app/assets/stylesheets/cm_admin/components/_range.scss in cm-admin-0.3.0 vs app/assets/stylesheets/cm_admin/components/_range.scss in cm-admin-0.4.0
- old
+ new
@@ -1,20 +1,31 @@
@import "../helpers/index.scss";
.range-container {
display: flex;
- width: 360px;
+ width: 424px;
height: 54px;
padding: 8px;
background: $white;
border: 1px solid $grey-lighter-clr;
box-shadow: 0px 4px 16px rgba(0, 0, 0, 0.16);
border-radius: $radius-4;
.range-item {
+ width: 200px;
+ border: 1px solid $grey-light-clr;
+ border-radius: $radius-4;
+ padding: 8px 0 8px 16px;
&:nth-child(1) {
margin-right: 4px;
}
&:nth-child(2) {
margin-left: 4px;
}
+ &:hover {
+ border: 1px solid $grey-dark-clr;
+ }
+ &:focus {
+ outline: none;
+ border: 1px solid $brand-color;
+ }
}
-}
\ No newline at end of file
+}