File size: 587 Bytes
1e92f2d |
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 |
.wpnc__status-bar {
position: absolute;
display: flex;
align-items: center;
justify-content: space-between;
top: $wpnc__title-bar-height;
width: 100%;
z-index: 101;
background-color: var(--color-error);
color: var(--color-text-inverted);
a,
a:visited {
color: var(--color-text-inverted);
font-weight: 600;
text-decoration: underline;
}
a:hover,
a:focus,
a:active {
color: var(--color-text-inverted);
}
span {
margin: 15px 5px;
}
button.wpnc__close-link {
position: relative;
}
}
.wpnc__status-bar.success {
background-color: var(--color-success);
}
|