blob: e2335a72c1affe9fbc7800ae0fa9eaec5211246d (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
|
/* 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 {
#nav li {
padding: 0px !important;
margin: 0px !important;
margin-top: $inner-gap;
}
}
|