mirror of
https://git.kescher.at/CatCatNya/catstodon.git
synced 2024-11-23 12:18:06 +01:00
[Glitch] Fix floating action button obscuring last element
Port 5a448d0d71
to glitch-soc
Signed-off-by: Claire <claire.github-309c@sitedethib.com>
This commit is contained in:
parent
22080786df
commit
703c7ae4b9
2 changed files with 5 additions and 1 deletions
|
@ -234,7 +234,7 @@ class ColumnsArea extends ImmutablePureComponent {
|
||||||
</div>
|
</div>
|
||||||
</div>
|
</div>
|
||||||
|
|
||||||
<div className='columns-area__panels__main'>
|
<div className={`columns-area__panels__main ${floatingActionButton && 'with-fab'}`}>
|
||||||
{!navbarUnder && <TabsBar key='tabs' />}
|
{!navbarUnder && <TabsBar key='tabs' />}
|
||||||
{content}
|
{content}
|
||||||
{navbarUnder && <TabsBar key='tabs' />}
|
{navbarUnder && <TabsBar key='tabs' />}
|
||||||
|
|
|
@ -233,6 +233,10 @@
|
||||||
.columns-area__panels__pane--compositional {
|
.columns-area__panels__pane--compositional {
|
||||||
display: none;
|
display: none;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
.with-fab .scrollable .item-list:last-child {
|
||||||
|
padding-bottom: 5.25rem;
|
||||||
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
@media screen and (min-width: 600px + (285px * 1) + (10px * 1)) {
|
@media screen and (min-width: 600px + (285px * 1) + (10px * 1)) {
|
||||||
|
|
Loading…
Reference in a new issue