feat: add media query for header responsive

This commit is contained in:
RadoslavDimchev 2023-12-04 19:33:44 +02:00
parent 27173fdfe3
commit 68751434c4
2 changed files with 8 additions and 0 deletions

View File

@ -14,6 +14,7 @@ const Header = ({ selectedTag }: HeaderProps) => {
paddingBottom: '25px',
marginTop: '4.4rem',
}}
className="header-container"
>
<NimbusLogo />
<TagContainer selectedTag={selectedTag} />

View File

@ -130,3 +130,10 @@ ul li {
background-color: #f9f9f9;
}
}
@media screen and (max-width: 440px) {
.header-container {
flex-direction: column;
gap: 12px;
}
}