scratch-www/src/components/stepnavigation/stepnavigation.scss

32 lines
593 B
SCSS
Raw Normal View History

2016-06-16 10:54:36 -04:00
@import "../../colors";
@import "../../frameless";
.step-navigation {
margin: 0;
padding: 0;
list-style: none;
li {
display: inline-block;
border-radius: 8px / $em;
padding: 4px / $em;
.indicator {
border-radius: 4px / $em;
background-color: $ui-white;
width: 8px / $em;
height: 8px / $em;
}
&.active {
.indicator {
background-color: $ui-aqua;
}
}
&.selected {
border: 1px solid $ui-white;
}
}
}