Tweak Checkbox styles for the actor sheet

This commit is contained in:
Oliver-Akins 2024-03-24 16:50:33 -06:00
parent 8c9d8125f2
commit 022a63f12f
3 changed files with 28 additions and 0 deletions

View file

@ -66,6 +66,29 @@
opacity: 60%;
}
input[type="checkbox"] {
-webkit-appearance: none;
-moz-appearance: none;
appearance: none;
border-radius: 2px;
margin: 0;
cursor: pointer;
background: var(--elevation-8dp-bg);
position: relative;
&:checked::before {
content: "";
background: var(--color-checkbox-checked);
border-radius: 3px;
$margin: 4px;
top: $margin;
bottom: $margin;
left: $margin;
right: $margin;
position: absolute;
}
}
.page-content {
padding: 16px;
padding-bottom: 69px;