19 lines
361 B
CSS
19 lines
361 B
CSS
|
|
.footer {
|
|
position: sticky;
|
|
bottom: 0;
|
|
width: 100%;
|
|
background-color: var(--bs-body-bg);
|
|
border-top: 1px solid var(--theme-toolbarActive);
|
|
z-index: 1000;
|
|
padding-bottom: 1.5rem;
|
|
}
|
|
|
|
.footerNav {
|
|
display: grid;
|
|
grid-template-columns: 1fr 1fr 1fr 1fr 1fr;
|
|
justify-items: center;
|
|
align-items: center;
|
|
width: 100%;
|
|
}
|