diff options
author | rohan09-raj <[email protected]> | 2024-02-19 22:30:12 +0530 |
---|---|---|
committer | Blaster4385 <[email protected]> | 2024-02-21 23:52:45 +0530 |
commit | f407b687e4b0721809f799390de3bfdb88de2df7 (patch) | |
tree | 35baf554ce0d6df732044faf93e906cfe9d18fb1 /client/src/components/Header | |
parent | fbb305f7458a468ef9e75cba6000e05cdcdf494c (diff) |
feat: implemented responsive design
Diffstat (limited to 'client/src/components/Header')
-rw-r--r-- | client/src/components/Header/Header.module.css | 10 |
1 files changed, 10 insertions, 0 deletions
diff --git a/client/src/components/Header/Header.module.css b/client/src/components/Header/Header.module.css index 6edcee1..3fe6741 100644 --- a/client/src/components/Header/Header.module.css +++ b/client/src/components/Header/Header.module.css @@ -13,3 +13,13 @@ .header__mini{ color: var(--color-yellow); } + +@media screen and (max-width: 480px) { + .header { + margin: 0.5rem 1rem; + } + + .header h1 { + font-size: 2rem; + } +} |