This commit is contained in:
2026-05-07 09:16:01 +08:00
parent ccc46844b6
commit 1980364521
99 changed files with 2664 additions and 934 deletions

View File

@@ -0,0 +1,26 @@
@layer utility {
.rounded-full {
border-radius: 9999px;
}
.rounded-none {
border-radius: 0;
}
.rounded-xs {
border-radius: var(--radius-xs);
}
.rounded-sm {
border-radius: var(--radius-sm);
}
.rounded-md {
border-radius: var(--radius-md);
}
.rounded-lg {
border-radius: var(--radius-lg);
}
.rounded-xl {
border-radius: var(--radius-xl);
}
.rounded-2xl {
border-radius: var(--radius-2xl);
}
}