2020-08-22 15:01:04 +00:00
|
|
|
@import "tailwindcss/base";
|
|
|
|
|
|
|
|
@import "tailwindcss/components";
|
|
|
|
|
|
|
|
@import "tailwindcss/utilities";
|
2020-09-08 14:20:48 +00:00
|
|
|
|
|
|
|
input[type="checkbox"]::after {
|
|
|
|
content: "";
|
|
|
|
color: currentColor;
|
|
|
|
width: 100%;
|
|
|
|
height: 100%;
|
|
|
|
display: inline-flex;
|
|
|
|
align-items: center;
|
|
|
|
justify-content: center;
|
|
|
|
}
|
|
|
|
|
|
|
|
input[type="checkbox"]:checked::after {
|
|
|
|
content: "✓";
|
|
|
|
}
|
|
|
|
|
|
|
|
.hidden-options-toggle:checked+.hidden {
|
|
|
|
display: block;
|
|
|
|
}
|