Created
February 8, 2014 01:24
-
-
Save benknight/8875236 to your computer and use it in GitHub Desktop.
Removes border from baz sidebar
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
| // ---- | |
| // Sass (v3.3.0.rc.3) | |
| // Compass (v1.0.0.alpha.17) | |
| // ---- | |
| @import "compass/css3/box-shadow"; | |
| .siderbar .open-rail { | |
| margin-left: 0; | |
| padding-left: 0; | |
| } | |
| .layout-border { | |
| .column-beta { | |
| @include box-shadow(none); | |
| } | |
| .column-alpha { | |
| border: none; | |
| } | |
| } |
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
| .siderbar .open-rail { | |
| margin-left: 0; | |
| padding-left: 0; | |
| } | |
| .layout-border .column-beta { | |
| -moz-box-shadow: none; | |
| -webkit-box-shadow: none; | |
| box-shadow: none; | |
| } | |
| .layout-border .column-alpha { | |
| border: none; | |
| } |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment