This commit is contained in:
2025-12-09 11:13:40 +07:00
parent 9363b3bb4f
commit 699db96d26
15 changed files with 147 additions and 162 deletions

View File

@@ -3288,6 +3288,9 @@
.mb-4 {
margin-bottom: calc(var(--spacing) * 4);
}
.mb-5 {
margin-bottom: calc(var(--spacing) * 5);
}
.mb-6 {
margin-bottom: calc(var(--spacing) * 6);
}

View File

@@ -10,6 +10,7 @@
:root {
--font-sans: "Inclusive Sans", sans-serif;
--text-base: 16px;
--bg-body: #fafbfd;
--color-hura: #0041e8;
--color-header: #002bb5;
--text-base--line-height: 1.5;
@@ -213,6 +214,7 @@
);
transition-duration: var(--tw-duration, var(--default-transition-duration));
flex-grow: 1;
background: var(--bg-body);
}
@layer hura {
@@ -255,4 +257,10 @@
.radio-active[aria-checked="true"]::before {
background-color: var(--color-hura);
}
.link-active {
color: var(--color-hura);
}
.text-active {
color: var(--color-hura);
}
}