Refactor header

This commit is contained in:
Robert Long 2021-12-23 14:40:23 -08:00
commit eb620e9220
16 changed files with 307 additions and 130 deletions

View file

@ -16,16 +16,24 @@
height: 64px;
}
.logo {
display: flex;
.headerLogo {
display: none;
align-items: center;
text-decoration: none;
}
.leftNav.hideMobile {
display: none;
}
.leftNav > * {
margin-right: 12px;
}
.leftNav h3 {
font-size: 15px;
}
.rightNav {
justify-content: flex-end;
}
@ -40,7 +48,7 @@
.roomAvatar {
position: relative;
display: flex;
display: none;
justify-content: center;
align-items: center;
width: 36px;
@ -93,7 +101,17 @@
}
@media (min-width: 800px) {
.headerLogo,
.roomAvatar,
.leftNav.hideMobile {
display: flex;
}
.leftNav h3 {
font-size: 18px;
}
.nav {
height: 98px;
height: 76px;
}
}