fix(frontend): CSS-Import-Pfad in playground.css korrigiert #54
Labels
No labels
component/backend
component/docs
component/e2e
component/frontend
component/infra
component/keycloak
prio/high
prio/low
prio/medium
type/bug
type/chore
type/feature
type/refactor
type/test
No milestone
No project
No assignees
1 participant
Notifications
Due date
No due date set.
Dependencies
No dependencies set.
Reference
WompSchmiede/FamilienFeierPlaner#54
Loading…
Add table
Add a link
Reference in a new issue
No description provided.
Delete branch "%!s()"
Deleting a branch is permanent. Although the deleted branch may continue to exist for a short time before it actually gets removed, it CANNOT be undone in most cases. Continue?
Der CSS-Import-Pfad in frontend/src/lib/styles/playground.css ist falsch.
Aktuell:
@import '../../../shared/design-tokens/tokens.css';Richtig:
@import '../../../../shared/design-tokens/tokens.css';Von src/lib/styles/ aus fuehren 3 Ebenen (
../../../) nur bis frontend/ -- das shared/-Verzeichnis liegt aber auf Projekt-Root-Ebene (4 Ebenen).Auswirkung: Die Seiten /dashboard und /playground/* schlagen mit HTTP 500 fehl, da der CSS-Import nicht aufgeloest werden kann. Nach erfolgreichem Keycloak-Login wird zu /dashboard weitergeleitet -> sofortiger 500-Fehler.
Fehlerbild (CLI):
Loesung: