Files
notifications-admin/app/assets/stylesheets/components/banner.scss
T

30 lines
428 B
SCSS
Raw Normal View History

%banner,
2015-12-17 14:05:35 +00:00
.banner {
@include core-19;
background: $turquoise;
color: $white;
display: block;
padding: $gutter-half;
2015-12-17 14:05:35 +00:00
margin: 0 0 $gutter 0;
text-align: center;
position: relative;
}
.banner-with-tick {
@extend %banner;
padding: $gutter-half $gutter;
2015-12-17 14:05:35 +00:00
&:before {
@include core-24;
content: '✔';
position: absolute;
top: $gutter-half;
left: $gutter-half;
margin-top: -2px;
}
}