Created
December 18, 2015 04:45
-
-
Save rohanthewiz/337218796c19ad510a57 to your computer and use it in GitHub Desktop.
Generated by SassMeister.com.
This file contains hidden or 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
// ---- | |
// libsass (v3.3.2) | |
// ---- | |
.asset-edit-table { | |
width: 100%; | |
&__row { | |
width: 100%; | |
} | |
&__left-side { | |
display: inline-block; | |
width: 48%; | |
#tag_view_id { | |
max-width: 400px; | |
} | |
} | |
&__right-side { | |
display: inline-block; | |
width: 48%; | |
padding-left: 1%; | |
} | |
} |
This file contains hidden or 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
.asset-edit-table { | |
width: 100%; | |
} | |
.asset-edit-table__row { | |
width: 100%; | |
} | |
.asset-edit-table__left-side { | |
display: inline-block; | |
width: 48%; | |
} | |
.asset-edit-table__left-side #tag_view_id { | |
max-width: 400px; | |
} | |
.asset-edit-table__right-side { | |
display: inline-block; | |
width: 48%; | |
padding-left: 1%; | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Doing a little BEM with SASS. Nice!