From 3247f3dc7d803dbb7138dc93df2f6897324a89a2 Mon Sep 17 00:00:00 2001 From: Yuxuan Shui Date: Thu, 15 Oct 2020 22:52:34 +0100 Subject: [PATCH] Bottom button shouldn't obstruct the list Having .bottom-btn { position: fixed; } cause the button to obstruct the last few items in the list. --- src/css/popup.css | 5 +++-- 1 file changed, 3 insertions(+), 2 deletions(-) diff --git a/src/css/popup.css b/src/css/popup.css index 543936e..f50c0b7 100644 --- a/src/css/popup.css +++ b/src/css/popup.css @@ -102,7 +102,8 @@ table { flex: 1; inline-size: 100%; max-block-size: 400px; - overflow: auto; + overflow-x: hidden; + overflow-y: auto; } .offpage { @@ -814,11 +815,11 @@ hr { inline-size: 100%; inset-block-end: 0; line-height: 41px; + overflow: hidden; padding-block-end: 0; padding-block-start: 0; padding-inline-end: 16px; padding-inline-start: 16px; - position: fixed; } .delete-container {