|
@@ -7,7 +7,7 @@ $opacity-color: rgba(17,17,17,0.8);
|
|
|
.select {
|
|
|
width: 90%;
|
|
|
display: flex;
|
|
|
- margin: 40px auto 15px;
|
|
|
+ margin: 0px auto 15px;
|
|
|
flex-direction: column;
|
|
|
position: relative;
|
|
|
font-family: 'Lato', sans-serif;
|
|
@@ -26,8 +26,11 @@ $opacity-color: rgba(17,17,17,0.8);
|
|
|
margin: 0;
|
|
|
width: 100%;
|
|
|
background-color: $main-color;
|
|
|
- position: absolute;
|
|
|
- left: 0;
|
|
|
+ max-height: 50vh;
|
|
|
+ // overflow-y: auto;
|
|
|
+ // overflow: hidden;
|
|
|
+ // position: absolute;
|
|
|
+ // left: 0;
|
|
|
top: 100%;
|
|
|
z-index: 10;
|
|
|
}
|
|
@@ -65,4 +68,24 @@ $opacity-color: rgba(17,17,17,0.8);
|
|
|
outline: none;
|
|
|
}
|
|
|
}
|
|
|
-}
|
|
|
+}
|
|
|
+
|
|
|
+
|
|
|
+// ____SCROLL-BAR_____
|
|
|
+.scrollbar {
|
|
|
+ max-height: 50vh;
|
|
|
+ overflow-y: scroll;
|
|
|
+}
|
|
|
+#style::-webkit-scrollbar {
|
|
|
+ width: 12px;
|
|
|
+}
|
|
|
+#style::-webkit-scrollbar-thumb {
|
|
|
+ border-radius: 10px;
|
|
|
+ -webkit-box-shadow: inset 0 0 6px rgba(0,0,0,.3);
|
|
|
+ background-color: $hover-color;
|
|
|
+}
|
|
|
+
|
|
|
+#style::-webkit-scrollbar-track {
|
|
|
+ -webkit-box-shadow: inset 0 0 6px rgba(0,0,0,0.3);
|
|
|
+ border-radius: 10px;
|
|
|
+}
|