2020-08-15 10:17:15 +02:00
|
|
|
.container {
|
|
|
|
display: flex;
|
|
|
|
align-items: center;
|
2020-08-16 20:22:07 +02:00
|
|
|
position: relative;
|
2020-08-15 10:17:15 +02:00
|
|
|
overflow: hidden;
|
|
|
|
}
|
|
|
|
|
|
|
|
.checkbox {
|
|
|
|
display: flex;
|
|
|
|
justify-content: center;
|
|
|
|
align-items: center;
|
|
|
|
width: 20px;
|
|
|
|
height: 20px;
|
2022-12-13 04:45:38 +01:00
|
|
|
border: 1px solid var(--base500);
|
2020-08-15 10:17:15 +02:00
|
|
|
border-radius: 4px;
|
|
|
|
}
|
|
|
|
|
|
|
|
.label {
|
|
|
|
margin-left: 10px;
|
2021-03-28 19:07:09 +02:00
|
|
|
user-select: none; /* disable text selection when clicking to toggle the checkbox */
|
2020-08-15 10:17:15 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
.input {
|
|
|
|
position: absolute;
|
2020-08-16 20:22:07 +02:00
|
|
|
visibility: hidden;
|
2020-08-15 10:17:15 +02:00
|
|
|
height: 0;
|
|
|
|
width: 0;
|
2020-08-16 20:22:07 +02:00
|
|
|
bottom: 100%;
|
|
|
|
right: 100%;
|
2020-08-15 10:17:15 +02:00
|
|
|
}
|