Refactor, tweaks, clean-up, improve

This commit is contained in:
Melvin Valster
2019-07-24 23:27:23 +02:00
parent 36742ea22e
commit e021dea1ab
16 changed files with 258 additions and 130 deletions
+31
View File
@@ -0,0 +1,31 @@
.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;
}
}
}
}