stacker.news/components/nav/mobile/footer.module.css

22 lines
401 B
CSS
Raw Normal View History

2024-02-23 15:32:20 +00:00
.footer {
position: fixed;
2024-02-23 15:32:20 +00:00
bottom: 0;
width: 100%;
background-color: var(--bs-body-bg);
border-top: 1px solid var(--theme-toolbarActive);
z-index: 1000;
2024-03-28 23:57:42 +00:00
}
.footerPadding {
padding-bottom: env(safe-area-inset-bottom);
2024-02-23 15:32:20 +00:00
}
.footerNav {
display: grid;
grid-template-columns: 1fr 1fr 1fr 1fr 1fr;
justify-items: center;
align-items: center;
width: 100%;
}