Better slugs, improvements to projects, some fixes
All checks were successful
Build and Deploy to Web Server / deploy (push) Successful in 14m57s
All checks were successful
Build and Deploy to Web Server / deploy (push) Successful in 14m57s
This commit is contained in:
@@ -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;
|
||||
}
|
||||
}
|
||||
|
Reference in New Issue
Block a user