Trying to fix the settings
This commit is contained in:
parent
289ff78b60
commit
a05b9d6a5f
10 changed files with 305 additions and 274 deletions
|
@ -159,4 +159,29 @@
|
|||
background-color: var(--button-hover-background-color);
|
||||
padding: 10px;
|
||||
margin: 10px;
|
||||
}
|
||||
}
|
||||
|
||||
.slider {
|
||||
display: flex;
|
||||
justify-content: space-between;
|
||||
margin-top: 10px;
|
||||
}
|
||||
|
||||
.slider-option {
|
||||
cursor: pointer;
|
||||
padding: 10px;
|
||||
border: 1px solid #ccc;
|
||||
border-radius: 5px;
|
||||
transition: background-color 0.3s;
|
||||
}
|
||||
|
||||
.slider-option.active {
|
||||
background-color: #007bff; /* Change to your active color */
|
||||
color: white;
|
||||
border-color: #007bff;
|
||||
}
|
||||
|
||||
input[type="radio"] {
|
||||
display: none; /* Hide the default radio buttons */
|
||||
}
|
||||
|
Loading…
Add table
Add a link
Reference in a new issue