Skip to content

Instantly share code, notes, and snippets.

@dpw1
Last active September 2, 2023 01:55
Show Gist options
  • Save dpw1/a60562cde9f3719c2614eaa58a37d00d to your computer and use it in GitHub Desktop.
Save dpw1/a60562cde9f3719c2614eaa58a37d00d to your computer and use it in GitHub Desktop.
Menu word on mobile
<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