Assets refactor: subdirectories added, files moved, links updated.

This commit is contained in:
Jesse Malotaux 2025-03-23 21:59:34 +01:00
parent 0ef0c2025a
commit 2f96c787a2
16 changed files with 7 additions and 27 deletions

View file

@ -0,0 +1,40 @@
.panel {
@apply grid
grid-rows-[auto_1fr]
fixed
top-2
left-4 sm:left-16
right-4 sm:right-16
bottom-2
overflow-hidden;
> .panel__header,
> .panel__title {
@apply px-4 py-2;
/* &:first-child {
@apply pt-4;
}
&:last-child {
@apply pb-4;
} */
}
.panel__title {
@apply bg-gradient-to-r
w-fit
from-amber-300
to-white/50
pt-3
pl-16 sm:pl-4
bg-clip-text
text-transparent;
}
.panel__content {
@apply grid
pt-4 sm:pt-0
pl-0 sm:pl-4;
}
}