1
0
mirror of https://github.com/danbee/julep synced 2025-03-04 08:59:10 +00:00
julep/includes/_content.scss
2013-02-12 11:38:52 +00:00

13 lines
227 B
SCSS

// Set appropriate padding on content.
@mixin content($args...) {
padding: 0;
@each $arg in $args {
@if $arg == header {
padding-top: 2.5em;
}
@if $arg == tabbar {
padding-bottom: 3.5em;
}
}
}