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 12:58:26 +00:00

14 lines
285 B
SCSS

// Set appropriate padding on content.
// This is to leave space for the header and the tab bar.
@mixin content($args...) {
padding: 0;
@each $arg in $args {
@if $arg == header {
padding-top: 2.5em;
}
@if $arg == tabbar {
padding-bottom: 3.5em;
}
}
}