This repository has been archived on 2025-11-02. You can view files and clone it. You cannot open issues or pull requests or push a commit.
Files
parandum/src/css/NavBar.css
2021-09-01 17:30:30 +01:00

34 lines
462 B
CSS

#banner-logo {
width: 200px;
display: initial;
}
#small-logo {
width: 55px;
display: none;
}
nav {
display: flex;
flex-direction: row;
flex-wrap: nowrap;
justify-content: space-between;
align-items: center;
margin: 24px;
}
.navbar-items, nav > a {
display: flex;
flex-direction: row;
flex-wrap: wrap;
justify-content: flex-end;
}
@media screen and (max-width: 660px) {
#banner-logo {
display: none;
}
#small-logo {
display: initial;
}
}