Bottom button shouldn't obstruct the list

Having .bottom-btn { position: fixed; } cause the button to obstruct the
last few items in the list.
This commit is contained in:
Yuxuan Shui 2020-10-15 22:52:34 +01:00
parent f0afc0da36
commit 3247f3dc7d

View file

@ -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 {