🐞 fix: Fix card overflow

This commit is contained in:
Keith Solomon
2025-05-27 21:58:54 -05:00
parent 9659d93556
commit 3bbdf90ccf
2 changed files with 19 additions and 1 deletions

View File

@@ -23,6 +23,7 @@
--font-weight-normal: 400;
--font-weight-bold: 700;
--radius-sm: 0.25rem;
--ease-out: cubic-bezier(0, 0, 0.2, 1);
--ease-in-out: cubic-bezier(0.4, 0, 0.2, 1);
--default-transition-duration: 150ms;
--default-transition-timing-function: cubic-bezier(0.4, 0, 0.2, 1);
@@ -1468,6 +1469,11 @@
}
}
}
.drawer-content {
grid-column-start: 2;
grid-row-start: 1;
min-width: calc(0.25rem * 0);
}
.container {
width: 100%;
@media (width >= 40rem) {
@@ -2346,6 +2352,11 @@
margin-inline-end: calc(calc(var(--spacing) * 4) * calc(1 - var(--tw-space-x-reverse)));
}
}
.truncate {
overflow: hidden;
text-overflow: ellipsis;
white-space: nowrap;
}
.rounded-box {
border-radius: var(--radius-box);
}
@@ -2411,6 +2422,9 @@
.text-wrap {
text-wrap: wrap;
}
.wrap-anywhere {
overflow-wrap: anywhere;
}
.text-blue-400 {
color: var(--color-blue-400);
}
@@ -2462,6 +2476,10 @@
--tw-ease: var(--ease-in-out);
transition-timing-function: var(--ease-in-out);
}
.ease-out {
--tw-ease: var(--ease-out);
transition-timing-function: var(--ease-out);
}
.card-lg {
.card-body {
--card-p: 2rem;