Files
Calculateur-Talents-Wow/src/components/ClassPicker.scss
T
2019-07-24 23:27:23 +02:00

31 lines
377 B
SCSS

.class-picker {
display: flex;
list-style: none;
padding: 0;
&--center {
justify-content: center;
}
&__class {
margin-right: 1em;
opacity: 1;
transition: all .1s ease-out;
&:hover {
opacity: 1;
}
&--active {
opacity: 1;
}
&--inactive {
opacity: .4;
&:hover {
opacity: .5;
}
}
}
}