discourse/app/assets/stylesheets/mobile/banner.scss

18 lines
377 B
SCSS
Raw Normal View History

2014-08-08 06:31:32 -04:00
// --------------------------------------------------
// Banner
// --------------------------------------------------
#banner {
2015-10-22 17:37:00 -04:00
// go full width on mobile, by extending into the 10px wrap
// borders on left and right
margin: 0 -10px;
@media all and (max-height: 499px) {
max-height: 100px;
}
@media all and (min-height: 500px) {
max-height: 180px;
}
2014-08-08 06:31:32 -04:00
}