mirror of
https://github.com/codeninjasllc/discourse.git
synced 2024-11-24 08:09:13 -05:00
16 lines
282 B
SCSS
16 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;
|
|
}
|
|
|
|
}
|