mirror of
https://github.com/Mueller-Patrick/Betterzon.git
synced 2026-05-26 12:38:03 +00:00
29 lines
463 B
CSS
29 lines
463 B
CSS
.bottom-bar-container {
|
|
background-color: black
|
|
;
|
|
width: 100%;
|
|
height: 68px;
|
|
position: fixed;
|
|
padding: 16px;
|
|
align-items: center;
|
|
bottom: 0;
|
|
display: grid;
|
|
grid-template-columns: 100px auto 100px;
|
|
}
|
|
|
|
.betterzonlogo {
|
|
grid-column-start: 1;
|
|
grid-column-end: 2;
|
|
}
|
|
|
|
.references {
|
|
grid-column-start: 2;
|
|
grid-column-end: 3;
|
|
align-items: center;
|
|
}
|
|
|
|
.copyright {
|
|
grid-column-start: 3;
|
|
grid-column-end: 4;
|
|
}
|