mirror of
https://github.com/Mueller-Patrick/Betterzon.git
synced 2025-04-19 15:29:18 +00:00
31 lines
500 B
CSS
31 lines
500 B
CSS
.bottom-bar-wrapper {
|
|
display: grid;
|
|
grid-template-columns: repeat(3, 1fr);
|
|
grid-template-rows: 70px 70px 70px;
|
|
grid-column-gap: 0px;
|
|
grid-row-gap: 0px;
|
|
}
|
|
|
|
.folge-uns-item {
|
|
grid-column: 2; grid-row: 1;
|
|
justify-self: center;
|
|
}
|
|
|
|
.link-items {
|
|
grid-column: 2; grid-row: 2;
|
|
justify-self: center;
|
|
}
|
|
|
|
.footer-links li {
|
|
display: inline;
|
|
margin-right: 60px;
|
|
}
|
|
|
|
.bottom-logo {
|
|
grid-column: 1; grid-row: 3;
|
|
}
|
|
|
|
.bottom-info {
|
|
grid-column: 3; grid-row: 3;
|
|
}
|