Last active
December 31, 2024 16:11
-
-
Save odessy/2f419724ef00b4cac51378dc2fd1e2be to your computer and use it in GitHub Desktop.
Story increase logo size
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
@media only screen and (max-width: 479px){ | |
.header__mobile { | |
grid-template-columns: repeat(8, minmax(0, 1fr)); | |
} | |
.js__show__mobile .theme__header__toolbar, | |
.header__mobile .theme__header__toolbar { | |
grid-column: 1 / span 8; | |
} | |
.header__mobile .header__logo.header__logo--image{ | |
grid-column: 3 / span 4; | |
} | |
.header__mobile__left{ | |
grid-column: 1 / span 2; | |
} | |
.header__mobile__right{ | |
grid-column: 7 / span 2; | |
} | |
.header__mobile__right .header__mobile__button .navlink { | |
padding: 0; | |
} | |
.search--popdown .icon, | |
.header__mobile__button .icon { | |
max-height: 25px; | |
} | |
.header__mobile__button .header__mobile__hamburger { | |
width: 40px; | |
margin-right: 0px; | |
} | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment