32 lines
451 B
SCSS
32 lines
451 B
SCSS
.usa-banner {
|
|
display: flex;
|
|
align-items: center;
|
|
padding: ($gap / 2) $gap;
|
|
z-index: 15;
|
|
position: fixed;
|
|
height: $usa-banner-height;
|
|
width: 100%;
|
|
|
|
img {
|
|
flex-grow: 0;
|
|
margin-right: $gap;
|
|
}
|
|
|
|
p {
|
|
margin: 0;
|
|
}
|
|
|
|
button.icon-tooltip {
|
|
@include small-label;
|
|
|
|
color: $color-blue;
|
|
padding: 0 ($gap / 2);
|
|
margin: 0 ($gap / 2);
|
|
font-weight: normal;
|
|
|
|
.icon {
|
|
@include icon-size(12);
|
|
}
|
|
}
|
|
}
|