blob: d054060704fdd9233064b67f78c2161044223150 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
|
/* IE 4 Only */
@import "../variables";
/**
* Display inner block does not seem to work on thead
* li elements in IE4, so just make the list vertical
*/
#header {
.logo-text {
line-height: auto;
}
#nav li {
padding: 0px !important;
margin: 0px !important;
margin-top: $inner-gap;
}
}
|