|
@@ -6,6 +6,9 @@
|
|
|
@import url("./helpers.scss");
|
|
@import url("./helpers.scss");
|
|
|
@import url("./button-styles.scss");
|
|
@import url("./button-styles.scss");
|
|
|
@import url("./colors.scss");
|
|
@import url("./colors.scss");
|
|
|
|
|
+// @import url("./responsive.scss");
|
|
|
|
|
+
|
|
|
|
|
+@import "responsive";
|
|
|
|
|
|
|
|
// Hide scrollbar for Chrome, Safari and Opera
|
|
// Hide scrollbar for Chrome, Safari and Opera
|
|
|
*::-webkit-scrollbar {
|
|
*::-webkit-scrollbar {
|
|
@@ -17,23 +20,6 @@
|
|
|
scrollbar-width: none;
|
|
scrollbar-width: none;
|
|
|
-ms-overflow-style: none; // IE and Edge
|
|
-ms-overflow-style: none; // IE and Edge
|
|
|
}
|
|
}
|
|
|
-// Responsive styles
|
|
|
|
|
-.responsive-small {
|
|
|
|
|
- display: none;
|
|
|
|
|
-}
|
|
|
|
|
-
|
|
|
|
|
-.responsive-large {
|
|
|
|
|
- display: block;
|
|
|
|
|
-}
|
|
|
|
|
-
|
|
|
|
|
-@media (width < 1640px) {
|
|
|
|
|
- .responsive-large {
|
|
|
|
|
- display: none;
|
|
|
|
|
- }
|
|
|
|
|
- .responsive-small {
|
|
|
|
|
- display: block;
|
|
|
|
|
- }
|
|
|
|
|
-}
|
|
|
|
|
|
|
|
|
|
// LISTS
|
|
// LISTS
|
|
|
|
|
|
|
@@ -154,11 +140,29 @@ input[type="checkbox"] {
|
|
|
box-shadow: var(--shadow);
|
|
box-shadow: var(--shadow);
|
|
|
border-radius: 10px;
|
|
border-radius: 10px;
|
|
|
height: 6rem;
|
|
height: 6rem;
|
|
|
- @media (width > 1699px) {
|
|
|
|
|
|
|
+ width: 7rem;
|
|
|
|
|
+
|
|
|
|
|
+ @include width-medium {
|
|
|
width: 10rem;
|
|
width: 10rem;
|
|
|
}
|
|
}
|
|
|
- @media (width < 1640px) {
|
|
|
|
|
- width: 7rem;
|
|
|
|
|
|
|
+}
|
|
|
|
|
+// Responsive styles
|
|
|
|
|
+.responsive-small {
|
|
|
|
|
+ display: block;
|
|
|
|
|
+}
|
|
|
|
|
+
|
|
|
|
|
+.responsive-large {
|
|
|
|
|
+ display: none;
|
|
|
|
|
+}
|
|
|
|
|
+.responsive-large {
|
|
|
|
|
+ @include width-medium {
|
|
|
|
|
+ display: block;
|
|
|
|
|
+ }
|
|
|
|
|
+}
|
|
|
|
|
+
|
|
|
|
|
+.responsive-small {
|
|
|
|
|
+ @include width-medium {
|
|
|
|
|
+ display: none;
|
|
|
}
|
|
}
|
|
|
}
|
|
}
|
|
|
|
|
|