Remove arrows in bet input fields in mozilla mobile browser

This commit is contained in:
2023-11-24 11:46:15 +01:00
parent 2153dadf7b
commit 579d841dfb

View File

@@ -274,3 +274,14 @@ a.pastlink:hover, a.futurelink:hover {
.row_group td { background-color: #73d510; color: #FFFFFF !important; }
.row_result { background-color: #ADC4A9; }
.row_result td { padding: 1px 2px; }
@media screen and (max-width: 600px){
input[type="number"] {
-moz-appearance: textfield;
}
}
@media screen and (min-width: 601px){
input[type="number"] {
min-width: 32px;
}
}