Remove hard-coded colors in vue

This commit is contained in:
2026-05-13 13:23:10 +02:00
parent 17fe2330c6
commit c3835f45c5
4 changed files with 26 additions and 10 deletions

View File

@@ -6,10 +6,16 @@
@use '@styles/page.project.feed' as feed;
@use '@styles/page.project.settings' as settings;
#projects {
overflow: hidden;
position: absolute;
top: 0;
#projects {
--space: #{color.$space};
--horizon: #{color.$horizon};
--track-main: #{color.$main-track};
--track-off-track: #{color.$off-track};
--track-hitchhiking: #{color.$hitchhiking};
overflow: hidden;
position: absolute;
top: 0;
left: 0;
width: 100%;
height: 100%;
@@ -77,4 +83,4 @@
}
}
}
}
}