Add .zblade/ to .gitignore, configure allow_gitignored_files setting, add TypeScript and Astro check dependencies, remove pnpm lockfile

This commit is contained in:
2026-02-04 20:12:02 +01:00
parent adc09431d3
commit 0238a0d2ba
23 changed files with 2956 additions and 8015 deletions
+33 -11
View File
@@ -95,19 +95,41 @@ a {
align-items: center;
}
.logo-text {
font-size: 1.25rem;
font-weight: 800;
font-family: var(--font-mono);
color: var(--color-accent);
text-transform: uppercase;
letter-spacing: 0.05em;
text-shadow: 0 0 8px rgba(0, 221, 119, 0.3);
.logo {
display: flex;
flex-direction: row;
align-items: baseline;
gap: 0.45rem;
line-height: 1;
white-space: nowrap;
}
.logo-text:hover {
color: var(--color-accent-alt);
text-shadow: 0 0 8px rgba(255, 0, 128, 0.3);
.logo-line-1,
.logo-line-2 {
font-size: 1.25rem;
font-weight: 900;
font-family: var(--font-mono);
letter-spacing: 0.02em;
white-space: nowrap;
}
.logo-line-1 {
color: var(--color-text);
}
.logo-line-2 {
color: transparent;
-webkit-text-stroke: 1.5px var(--color-text);
text-stroke: 1.5px var(--color-text);
}
.logo:hover .logo-line-1 {
color: var(--color-accent);
}
.logo:hover .logo-line-2 {
-webkit-text-stroke: 1.5px var(--color-accent);
text-stroke: 1.5px var(--color-accent);
}
.nav {