Replace checkboxes with sliders to conform the style on all platforms

This commit is contained in:
schlagmichdoch 2023-11-29 23:39:55 +01:00
parent f9a32c3e82
commit 6a599ed318
4 changed files with 128 additions and 50 deletions

View file

@ -31,9 +31,26 @@ html {
}
.p1 {
padding: 5px;
}
.p2 {
padding: 10px;
}
.pb0 {
padding-bottom: 0;
}
.mx1 {
margin-left: 5px;
margin-right: 5px;
}
.m1 {
margin: 10px;
}
.cursive {
font-style: italic;
}
@ -43,6 +60,18 @@ html {
flex-direction: row-reverse;
}
.flex {
display: flex;
}
.align-center {
align-items: center;
}
.space-evenly {
justify-content: space-evenly;
}
.space-between {
justify-content: space-between;
}