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:
parent
f0afc0da36
commit
3247f3dc7d
1 changed files with 3 additions and 2 deletions
|
@ -102,7 +102,8 @@ table {
|
||||||
flex: 1;
|
flex: 1;
|
||||||
inline-size: 100%;
|
inline-size: 100%;
|
||||||
max-block-size: 400px;
|
max-block-size: 400px;
|
||||||
overflow: auto;
|
overflow-x: hidden;
|
||||||
|
overflow-y: auto;
|
||||||
}
|
}
|
||||||
|
|
||||||
.offpage {
|
.offpage {
|
||||||
|
@ -814,11 +815,11 @@ hr {
|
||||||
inline-size: 100%;
|
inline-size: 100%;
|
||||||
inset-block-end: 0;
|
inset-block-end: 0;
|
||||||
line-height: 41px;
|
line-height: 41px;
|
||||||
|
overflow: hidden;
|
||||||
padding-block-end: 0;
|
padding-block-end: 0;
|
||||||
padding-block-start: 0;
|
padding-block-start: 0;
|
||||||
padding-inline-end: 16px;
|
padding-inline-end: 16px;
|
||||||
padding-inline-start: 16px;
|
padding-inline-start: 16px;
|
||||||
position: fixed;
|
|
||||||
}
|
}
|
||||||
|
|
||||||
.delete-container {
|
.delete-container {
|
||||||
|
|
Loading…
Add table
Reference in a new issue