I found this below code in one of web application, which is generating the css as mentioned below Not able to understand what way this include is working as per as I aware include is kind of function calling But I could able to see {} with some code inside.
sass code
.sendfile-header-title {
@include viewport(small) {
text-align: center;
display: block;
border-bottom: solid 1px $secondary-gray;
background: red;
}
}
css generated code
@media only screen and (max-width: 735px) and (max-device-width:768px) {
.sendfile-header-title {
text-align:center;
display: block;
border-bottom: solid 1px #e0e0e0;
background: red;
}
}