Dry Up SCSS With Mixins
@mixin navigation {
nav {
display: flex;
justify-content: space-around;
ul {
list-style: none;
li a {
text-decoration: none;
}
}
}
}div.base-nav {
@include navgation;
background-color: #fff;
color: #444;
nav ul {
li a:hover {
color: #222;
}
}
}
div.admin-nav {
@include navgation;
background-color: #000;
color: #fff;
nav ul {
li a:hover {
color: #ddd;
}
}
}PreviousDisplay Responsive iframe Maintaining Aspect RatioNextGive Elements The Same Width With Flexbox
Last updated