BETTERZON-78 adding bottom bar and top bar

This commit is contained in:
2021-05-05 18:40:22 +02:00
parent 0c50162fdf
commit 7e5ef71924
11 changed files with 30035 additions and 30163 deletions
@@ -0,0 +1,28 @@
.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;
}