mirror of
https://github.com/SrIzan10/analytics.srizan.ml.git
synced 2026-05-01 10:35:15 +00:00
28 lines
369 B
CSS
28 lines
369 B
CSS
.container {
|
|
display: flex;
|
|
align-items: center;
|
|
overflow: hidden;
|
|
}
|
|
|
|
.checkbox {
|
|
display: flex;
|
|
justify-content: center;
|
|
align-items: center;
|
|
width: 20px;
|
|
height: 20px;
|
|
border: 1px solid var(--gray500);
|
|
border-radius: 4px;
|
|
}
|
|
|
|
.label {
|
|
margin-left: 10px;
|
|
}
|
|
|
|
.input {
|
|
position: absolute;
|
|
height: 0;
|
|
width: 0;
|
|
bottom: -1px;
|
|
right: -1px;
|
|
}
|