mirror of
https://github.com/GSA/notifications-admin.git
synced 2026-09-04 19:28:25 -04:00
22 lines
350 B
SCSS
22 lines
350 B
SCSS
.banner {
|
|
|
|
@include core-19;
|
|
background: $turquoise;
|
|
color: $white;
|
|
display: block;
|
|
padding: $gutter-half $gutter;
|
|
margin: 0 0 $gutter 0;
|
|
text-align: center;
|
|
position: relative;
|
|
|
|
&:before {
|
|
@include core-24;
|
|
content: '✔';
|
|
position: absolute;
|
|
top: $gutter-half;
|
|
left: $gutter-half;
|
|
margin-top: -2px;
|
|
}
|
|
|
|
}
|