Trying to fix the settings

This commit is contained in:
sageTheDM 2024-09-26 09:29:04 +02:00
parent 289ff78b60
commit a05b9d6a5f
10 changed files with 305 additions and 274 deletions

View file

@ -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 */
}