frontend/Components/ItemSelect/itemSelect.module.css

25 lines
396 B
CSS
Raw Normal View History

2022-08-26 22:49:44 +03:00
.myselect{
border: none;
2022-08-27 03:48:28 +03:00
font-size: 14px;
2022-08-26 22:49:44 +03:00
color: #1C85BF;
font-weight: 500;
outline: none;
width: inherit;
}
@media screen and (max-width: 1300px) {
.myselect{
font-size: 18px;
}
}
@media screen and (max-width: 900px) {
.myselect{
font-size: 14px;
}
}
@media screen and (max-width: 500px) {
.myselect{
font-size: 12px;
}
}