Better slugs, improvements to projects, some fixes
All checks were successful
Build and Deploy to Web Server / deploy (push) Successful in 14m57s

This commit is contained in:
2025-08-14 11:11:10 +09:30
parent 1f45a74b2a
commit 778490bed8
25 changed files with 134 additions and 69 deletions

View File

@@ -78,4 +78,41 @@
font-family: "Roboto", sans-serif;
@apply text-gray-600 dark:text-white;
}
.astro-code {
@apply overflow-auto;
}
.astro-code code {
counter-reset: step;
counter-increment: step 0;
@apply text-sm;
@apply block;
@apply w-fit min-w-full;
}
.astro-code code .line {
@apply inline-block;
@apply w-full;
@apply pr-8;
@apply first:pt-2 last:pb-2;
@apply bg-white dark:bg-gray-100;
}
.astro-code code .line::before {
content: counter(step);
counter-increment: step;
@apply w-10;
@apply mr-5 ml-auto pr-2;
@apply inline-block;
@apply text-right;
@apply sticky;
@apply left-0;
@apply z-10;
@apply bg-gray-200;
}
}