Skip to content

Instantly share code, notes, and snippets.

@mrzarkovic
Last active October 29, 2018 12:35
Show Gist options
  • Save mrzarkovic/38d7bcb2292de38fd97436926e67f6b8 to your computer and use it in GitHub Desktop.
Save mrzarkovic/38d7bcb2292de38fd97436926e67f6b8 to your computer and use it in GitHub Desktop.
SASS partials
// _menu.scss
.menu {
background: red;
color: white;
& > ul {
& > li {
display: block;
}
}
}
// main.scss
@import 'menu';
html, body {
position: relative;
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment