Skip to content

Commit

Permalink
Merge branch 'main' into Bug-507-box-range-value-update
Browse files Browse the repository at this point in the history
  • Loading branch information
Avinash Biradar authored Oct 24, 2023
2 parents 5ce7a12 + 2fedf25 commit 1bb3c47
Showing 1 changed file with 8 additions and 3 deletions.
11 changes: 8 additions & 3 deletions src/style.css
Original file line number Diff line number Diff line change
Expand Up @@ -635,7 +635,8 @@ input[type='number']::-webkit-outer-spin-button {
flex-wrap: wrap;
}

.styled-input {
.styled-input,
.input-range-inputs[type='number'] {
background-color: var(--secondary-color);
border: 1px solid #010204;
border-radius: 5px;
Expand All @@ -645,12 +646,16 @@ input[type='number']::-webkit-outer-spin-button {
}

.styled-input:focus,
.styled-input:focus-visible {
.styled-input:focus-visible,
.input-range-inputs[type='number']:focus,
.input-range-inputs[type='number']:focus-visible {
outline: none;
}

.styled-input::-webkit-inner-spin-button,
.styled-input::-webkit-outer-spin-button {
.styled-input::-webkit-outer-spin-button,
.input-range-inputs[type='number']::-webkit-inner-spin-button,
.input-range-inputs[type='number']::-webkit-outer-spin-button {
-webkit-appearance: none;
appearance: none;
margin: 0;
Expand Down

0 comments on commit 1bb3c47

Please sign in to comment.