Last active
January 27, 2021 19:00
-
-
Save starryeyez024/440f93f01cc87189fd6b1d22aa754174 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
.container { | |
max-width: 1200px; | |
margin: auto; | |
display: flex; | |
flex-direction: row; | |
} | |
article { | |
padding: 20px; | |
background: yellow; | |
flex-grow: 1; | |
} | |
aside { | |
padding: 20px; | |
background: pink; | |
width: 360px; | |
margin: 60px; | |
} |
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="container"> | |
<article>hello world</article> | |
<aside>oh hai</aside> | |
</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
.container { | |
max-width: 1200px; | |
margin: auto; | |
display: flex; | |
flex-direction: row; | |
} | |
article { | |
padding: 20px; | |
background: yellow; | |
flex-grow: 1; | |
} | |
aside { | |
padding: 20px; | |
background: pink; | |
width: 360px; | |
margin: 60px; | |
} |
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.26.11", | |
"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