Created
October 9, 2021 22:07
-
-
Save starryeyez024/efc0bb160b4d8038ded4fe79e848d4c1 to your computer and use it in GitHub Desktop.
Generated by SassMeister.com.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
.cont { | |
width: 500px; | |
display: grid; | |
grid-template-columns: 50px 1fr 2fr; | |
} | |
.foo { | |
display: block; | |
background: yellow; | |
border: red solid 1px; | |
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<div class="cont"> | |
<div class="foo">foo</div> | |
<div class="foo">foo</div> | |
<div class="foo">foo</div> | |
</div> |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
.cont { | |
width: 500px; | |
display: grid; | |
grid-template-columns: 50px 1fr 2fr; | |
} | |
.foo { | |
display: block; | |
background: yellow; | |
border: red solid 1px; | |
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
{ | |
"sass": { | |
"compiler": "dart-sass/1.32.12", | |
"extensions": {}, | |
"syntax": "SCSS", | |
"outputStyle": "expanded" | |
}, | |
"autoprefixer": false | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment