prevent type coercion

- remove unused imports
- minor refactors and cleanups
This commit is contained in:
geoffrey45
2022-02-16 15:06:29 +03:00
parent 9972caf7d3
commit 5446b1fe4b
26 changed files with 190 additions and 206 deletions
+2 -4
View File
@@ -3,11 +3,9 @@ input[type="range"] {
margin-right: 15px;
width: calc(100% - 2px);
height: 0.3rem;
background: rgb(59, 57, 57);
border-radius: 5px;
background-image: linear-gradient($blue, $blue);
background-size: 0% 100%;
background-repeat: no-repeat;
background-size: 0 100%;
background: rgb(59, 57, 57) linear-gradient($blue, $blue) no-repeat;
}
/* Input Thumb */
+9 -9
View File
@@ -154,7 +154,7 @@ button {
}
.shadow-sm {
box-shadow: 0rem 0rem .5rem rgb(0, 0, 0);
box-shadow: 0 0 .5rem rgb(0, 0, 0);
}
.shadow-md {
@@ -195,46 +195,46 @@ button {
@-webkit-keyframes similarAlbums {
0% {
background-position: 0% 38%;
background-position: 0 38%;
}
50% {
background-position: 100% 63%;
}
100% {
background-position: 0% 38%;
background-position: 0 38%;
}
}
@-moz-keyframes similarAlbums {
0% {
background-position: 0% 38%;
background-position: 0 38%;
}
50% {
background-position: 100% 63%;
}
100% {
background-position: 0% 38%;
background-position: 0 38%;
}
}
@-o-keyframes similarAlbums {
0% {
background-position: 0% 38%;
background-position: 0 38%;
}
50% {
background-position: 100% 63%;
}
100% {
background-position: 0% 38%;
background-position: 0 38%;
}
}
@keyframes similarAlbums {
0% {
background-position: 0% 38%;
background-position: 0 38%;
}
50% {
background-position: 100% 63%;
}
100% {
background-position: 0% 38%;
background-position: 0 38%;
}
}