mirror of
https://github.com/discourse/discourse.git
synced 2024-11-24 16:41:18 +08:00
17 lines
282 B
SCSS
17 lines
282 B
SCSS
// --------------------------------------------------
|
|
// Banner
|
|
// --------------------------------------------------
|
|
|
|
#banner {
|
|
margin: 10px;
|
|
|
|
@media all and (max-height: 499px) {
|
|
max-height: 100px;
|
|
}
|
|
|
|
@media all and (min-height: 500px) {
|
|
max-height: 180px;
|
|
}
|
|
|
|
}
|