Last active
September 2, 2023 01:55
-
-
Save dpw1/a60562cde9f3719c2614eaa58a37d00d to your computer and use it in GitHub Desktop.
Menu word on mobile
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
<div class="menu__hamburguer--container" > | |
<span> | |
{% render 'icon-hamburger' %} | |
{% render 'icon-close' %} | |
</span> | |
<span class="menu__hamburguer--text">Menu</span> | |
</div> | |
<style> | |
.menu__hamburguer--container{ | |
position: relative; | |
top: 16px; | |
} | |
.icon-hamburger, .icon-close{ | |
color: #000000; | |
} | |
.menu__hamburguer--text{ | |
margin-top: 9px; | |
font-size: 11px; | |
color:black; | |
} | |
@media (max-width: 749px){ | |
.header__icon.link{ | |
text-decoration: unset !important; | |
} | |
} | |
</style> |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment