fix(style): lint

This commit is contained in:
George Cushen 2024-06-02 14:39:01 +01:00
commit 492e343c2a
4 changed files with 7 additions and 2 deletions

View file

@ -25,8 +25,9 @@
} }
.hb-card svg { .hb-card svg {
width: 1.5rem;
@apply text-neutral-700; @apply text-neutral-700;
width: 1.5rem;
transition: color 0.3s ease; transition: color 0.3s ease;
} }

View file

@ -2,6 +2,7 @@
@media (max-width: 1024px) { @media (max-width: 1024px) {
.hb-sidebar-container { .hb-sidebar-container {
@apply fixed top-0 w-full bottom-0 z-[15] pt-[calc(var(--navbar-height))] overscroll-contain; @apply fixed top-0 w-full bottom-0 z-[15] pt-[calc(var(--navbar-height))] overscroll-contain;
contain: layout style; contain: layout style;
transition: transform 0.8s cubic-bezier(0.52, 0.16, 0.04, 1); transition: transform 0.8s cubic-bezier(0.52, 0.16, 0.04, 1);
will-change: transform, opacity; will-change: transform, opacity;
@ -15,9 +16,11 @@
li > div { li > div {
@apply h-0; @apply h-0;
} }
li.open > div { li.open > div {
@apply h-auto pt-1; @apply h-auto pt-1;
} }
li.open > a > span > svg > path { li.open > a > span > svg > path {
@apply rotate-90; @apply rotate-90;
} }

View file

@ -11,6 +11,7 @@
@apply bg-gray-100 dark:bg-hb-dark; @apply bg-gray-100 dark:bg-hb-dark;
@apply text-neutral-700 dark:text-neutral-200 text-base font-normal text-center -indent-px; @apply text-neutral-700 dark:text-neutral-200 text-base font-normal text-center -indent-px;
@apply mt-[3px] ml-[-41px]; @apply mt-[3px] ml-[-41px];
content: counter(hb-step); content: counter(hb-step);
} }
} }

File diff suppressed because one or more lines are too long