Add _ before file name to prevent the preprocessor from creating a CSS file of that same name.
It is mostly used along side the @import
*) Create file with underscore in front of its name eg: _variables.scss
*) You can use these files to store different codes separately
*) You can use one of them to store all variables or/and mixins
@import 'variables';
nav .menu{
background-color:red;
ul{
list-style-type:none;
}
ul>li{
display:inline-block;
}
ul>li:hover > a{
background-color:#000;
}
}
------------CSS---------------------
nav .menu {
background-color: red;
}
nav .menu ul {
list-style-type: none;
}
nav .menu ul > li {
display: inline-block;
}
nav .menu ul > li:hover > a {
background-color: #000;
}