mirror of
https://github.com/discourse/discourse.git
synced 2024-11-25 05:02:24 +08:00
27 lines
422 B
SCSS
27 lines
422 B
SCSS
// --------------------------------------------------
|
|
// Banner
|
|
// --------------------------------------------------
|
|
|
|
#banner {
|
|
padding: 10px;
|
|
background: $tertiary-low;
|
|
color: $primary;
|
|
z-index: z("base") + 1;
|
|
overflow: auto;
|
|
|
|
&.overlay {
|
|
position: fixed;
|
|
}
|
|
|
|
.close {
|
|
margin-top: -5px;
|
|
color: $primary-low-mid;
|
|
padding-left: 5px;
|
|
float: right;
|
|
}
|
|
|
|
.meta {
|
|
display: none;
|
|
}
|
|
}
|