Changed Spacing between between Buttons and Spacing of Settings Menu (#1864)

Co-authored-by: TSO <tim.sommer@bieber-marburg.de>
This commit is contained in:
Tim
2024-09-10 09:02:56 +02:00
committed by GitHub
parent 6410a99cf3
commit 7fad973a77
4 changed files with 16 additions and 7 deletions

View File

@@ -82,16 +82,22 @@ td {
.modal-body,
.modal-footer {
background-color: var(--md-sys-color-surface-5);
padding: 1.5rem 2rem;
border: none;
}
.modal-header {
border-radius: 2rem 2rem 0rem 0rem;
padding: 1.5rem 2rem 0.5rem;
}
.modal-body{
padding: 0.5rem 2rem;
}
.modal-footer {
border-radius: 0rem 0rem 2rem 2rem;
padding: 0.5rem 2rem 1.5rem;
}
/* Icon fill */
@@ -538,6 +544,9 @@ fieldset:disabled .btn {
}
/* Range Slider */
.form-range{
margin-top: 0.25rem;
}
.form-range:focus::-webkit-slider-thumb {
box-shadow: 0 0 0 1px var(--md-sys-color-surface), 0 0 0 .25rem var(--md-sys-color-primary)
}