Source: https://foundation.zurb.com/forum/posts/50229-fixing-the-sticky-dropdown-z-index-issue
29 lines
387 B
SCSS
29 lines
387 B
SCSS
.usa-banner {
|
|
display: flex;
|
|
align-items: center;
|
|
padding: ($gap / 2) $gap;
|
|
z-index: 15;
|
|
|
|
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);
|
|
}
|
|
}
|
|
}
|