mirror of
https://github.com/flarum/framework.git
synced 2024-12-04 00:03:37 +08:00
5e8155e1cc
This concern was raised in https://discuss.flarum.org/d/26422-idearequest-make-header-background-color-match-exact-value-from-config.
18 lines
340 B
Plaintext
18 lines
340 B
Plaintext
.header-background() {
|
|
background: @header-bg;
|
|
position: fixed;
|
|
top: 0;
|
|
left: 0;
|
|
right: 0;
|
|
z-index: @zindex-header;
|
|
border-bottom: 1px solid @control-bg;
|
|
.transition(~"box-shadow 0.2s, -webkit-transform 0.2s");
|
|
|
|
@media @phone {
|
|
height: @header-height-phone;
|
|
}
|
|
@media @tablet-up {
|
|
height: @header-height;
|
|
}
|
|
}
|