This commit is contained in:
2025-12-02 17:01:37 +07:00
parent 6233a30284
commit e6c4947c75
8 changed files with 476 additions and 384 deletions

View File

@@ -50,14 +50,19 @@
.lucide--circle-plus {
--svg: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='24' height='24' viewBox='0 0 24 24' fill='none' stroke='currentColor' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Ccircle cx='12' cy='12' r='10'/%3E%3Cpath d='M8 12h8'/%3E%3Cpath d='M12 8v8'/%3E%3C/svg%3E");
}
.text-faq {
color: #ffc700;
}
.text-orange {
color: #ffc700;
}
.text-red {
color: #e00000;
}
.text-gray {
color: #6b7280;
}
.absolute {
position: absolute;
}
@@ -90,3 +95,32 @@
color: #fff;
background: #0041e8;
}
:is(.radio:checked, .radio[aria-checked="true"]):before {
background-color: var(--color-primary);
}
.radio:checked,
.radio[aria-checked="true"] {
border-color: var(--color-primary);
}
.checkbox:checked,
.checkbox[aria-checked="true"] {
background-color: var(--color-primary);
}
.checkbox:before {
background-color: #fff;
}
.btn-remove {
background: red;
color: #fff;
}
.overflow-y-scroll {
overflow-y: auto;
}
.max-h-\[500px\] {
max-height: 500px;
}