25 lines
389 B
SCSS
25 lines
389 B
SCSS
@import "colors";
|
|
@import "constants";
|
|
|
|
#outdated-browser-banner {
|
|
width: 100%;
|
|
margin: 0;
|
|
padding: $default-padding;
|
|
color: $black;
|
|
background-color: $yellow;
|
|
}
|
|
|
|
.outdated-browser-icon {
|
|
margin-right: $default-padding;
|
|
font-size: 30px;
|
|
opacity: 0.7;
|
|
}
|
|
|
|
.outdated-browser-buttons {
|
|
display: flex;
|
|
margin-left: auto;
|
|
|
|
.button {
|
|
margin-left: $default-spacer;
|
|
}
|
|
}
|