Archived
1
0
Fork 0
This repository has been archived on 2024-02-17. You can view files and clone it, but cannot push or open issues or pull requests.
SOD/public/stylesheets/style.css

26 lines
323 B
CSS
Raw Normal View History

2020-06-26 16:59:54 +02:00
body {
2020-09-29 16:12:43 +02:00
display: flex;
min-height: 100vh;
flex-direction: column;
2020-08-14 20:08:00 +02:00
}
2020-09-29 16:12:43 +02:00
main {
flex: 1 0 auto;
2020-08-17 10:45:38 +02:00
}
2020-09-30 11:00:14 +02:00
nav .brand-logo {
display: flex;
align-items: center;
justify-content: center;
}
.brand-logo img {
height: 64px;
}
@media (max-width: 600px) {
.brand-logo img {
height: 56px;
}
}