Bump pink-svelte and tweak UI styles and layout

- Update @appwrite.io/pink-svelte to 34802a6 in package.json -
Regenerate pnpm-lock.yaml to reflect updated deps - Change link-icon
color tokens from tertiary to primary in the sidebar - Reduce shell left
gutter: margin-left from 64px to 48px - Remove min-height: calc(100vh -
48px) on studio page
This commit is contained in:
Torsten Dittmann
2025-12-08 15:12:43 +04:00
parent e4a9f724e5
commit 002ceff9d2
5 changed files with 1359 additions and 1511 deletions
+2 -1
View File
@@ -26,7 +26,8 @@
"@appwrite.io/pink-icons": "0.25.0",
"@appwrite.io/pink-icons-svelte": "https://pkg.vc/-/@appwrite/@appwrite.io/pink-icons-svelte@5b26bb8",
"@appwrite.io/pink-legacy": "^1.0.3",
"@appwrite.io/pink-svelte": "https://pkg.vc/-/@appwrite/@appwrite.io/pink-svelte@33845eb",
"@appwrite.io/pink-svelte": "https://pkg.vc/-/@appwrite/@appwrite.io/pink-svelte@34802a6",
"@faker-js/faker": "^9.9.0",
"@popperjs/core": "^2.11.8",
"@sentry/sveltekit": "^10.25.0",
+1352 -1504
View File
File diff suppressed because it is too large Load Diff
+4 -4
View File
@@ -455,7 +455,7 @@
.link-icon {
height: 16px;
color: var(--fgcolor-neutral-weak);
color: var(--fgcolor-neutral-tertiary);
transition: color 0.2s ease-in-out;
}
@@ -463,7 +463,7 @@
background: var(--bgcolor-neutral-secondary);
.link-icon {
color: var(--fgcolor-neutral-tertiary);
color: var(--fgcolor-neutral-primary);
}
}
@@ -485,7 +485,7 @@
}
.link-icon {
color: var(--fgcolor-neutral-tertiary);
color: var(--fgcolor-neutral-primary);
}
}
}
@@ -495,7 +495,7 @@
color: var(--fgcolor-neutral-primary);
}
.link-icon {
color: var(--fgcolor-neutral-tertiary);
color: var(--fgcolor-neutral-primary);
}
}
+1 -1
View File
@@ -262,7 +262,7 @@
max-width: calc(100vw - 76px);
margin-top: 48px;
margin-right: 10px;
margin-left: 64px;
margin-left: 48px;
overflow: auto;
@media (min-width: 1024px) {
width: 100%;
@@ -48,7 +48,6 @@
.studio-page {
position: relative;
width: 100%;
min-height: calc(100vh - 48px);
background: var(--bgcolor-neutral-primary);
}
</style>