refactor: changed fetching fonts from remote to local; changed sass import rules to use

chore: updated packages
This commit is contained in:
2025-03-20 20:36:19 +01:00
parent f28f1e31c2
commit 42d0d1ddb9
18 changed files with 2461 additions and 2292 deletions
+6 -6
View File
@@ -260,7 +260,7 @@ export default defineComponent({
</script>
<style lang="scss" scoped>
@import '../styles/global.scss';
@use '../styles/colors';
.order-train-picker {
display: flex;
@@ -277,7 +277,7 @@ export default defineComponent({
gap: 0.5em;
select {
background-color: $bgColDarker;
background-color: colors.$bgColDarker;
font-size: 1em;
width: 100%;
@@ -306,23 +306,23 @@ ul.train-list {
li.no-trains {
font-weight: bold;
background-color: $bgColDarker;
background-color: colors.$bgColDarker;
padding: 0.5em;
margin-top: 0.5em;
}
li > button {
width: 100%;
background-color: $bgColDarker;
background-color: colors.$bgColDarker;
padding: 0.5em;
margin-top: 0.5em;
&:hover {
background-color: $bgColLighter;
background-color: colors.$bgColLighter;
}
&:focus-visible {
outline: 1px solid $accentCol;
outline: 1px solid colors.$accentCol;
}
}
}