Files
atst/scss/elements/_panels.scss
2018-07-09 08:53:17 -04:00

23 lines
388 B
SCSS

/*
* Panels
* A generic block container
*/
@mixin panel-base {
background-color: $color-white;
border-top-width: 1px;
border-bottom-width: 1px;
border-top-style: solid;
border-bottom-style: solid;
}
@mixin panel-theme-default {
border-top-color: $color-black;
border-bottom-color: $color-gray-light;
}
.panel {
@include panel-base;
@include panel-theme-default;
}