cg-select/src/style/nativSelect.scss

37 lines
710 B
SCSS
Raw Normal View History

2022-10-20 17:47:50 +03:00
.nativSelect {
border: none;
cursor: pointer;
display: none;
color: white;
background: #2a2f3b;
box-shadow: 2px 3px 5px rgba(0, 0, 0, 0.5);
2022-11-01 19:12:27 +03:00
-webkit-box-shadow: 2px 3px 5px rgba(0, 0, 0, 0.5);
2022-10-20 17:47:50 +03:00
border-radius: 5px;
2022-11-01 19:12:27 +03:00
-webkit-border-radius: 5px;
-moz-border-radius: 5px;
-ms-border-radius: 5px;
-o-border-radius: 5px;
2022-10-28 16:56:14 +03:00
margin: 0;
2022-10-20 17:47:50 +03:00
&__nativOption {
border: 1px #0a0b0e solid;
}
}
2022-10-28 16:56:14 +03:00
2022-12-20 19:54:44 +03:00
// @media (max-width: 576px) {
// .nativSelect {
// display: block;
// min-width: 235px;
// height: 50px;
2022-10-28 16:56:14 +03:00
2022-12-20 19:54:44 +03:00
// border: none;
// border-radius: 10px;
// }
2022-11-14 18:46:01 +03:00
2022-12-20 19:54:44 +03:00
// select[multiple='multiple'] {
// color: black;
// background-color: white;
// border-radius: 0;
// }
// }