13 lines
265 B
SCSS
13 lines
265 B
SCSS
@import '../../style/vars';
|
|
@import '../../style/mixins';
|
|
|
|
@include responsive() using ($vars) {
|
|
#timeline {
|
|
@include on-large-screen {
|
|
// workaround for IE
|
|
& > :first-child {
|
|
margin-top: map_get($vars, $large-margin);
|
|
}
|
|
}
|
|
}
|
|
}
|