Skip to content

Commit

Permalink
chore: update dependency to handle sass deprecation with quasar 2.17
Browse files Browse the repository at this point in the history
  • Loading branch information
fcrovetti committed Dec 16, 2024
1 parent f337b16 commit 1ad5114
Show file tree
Hide file tree
Showing 4 changed files with 1,250 additions and 244 deletions.
3 changes: 2 additions & 1 deletion .gitignore
Original file line number Diff line number Diff line change
@@ -1,5 +1,6 @@
# IDE
.vscode
.idea

# Quasar
.quasar
Expand Down Expand Up @@ -88,4 +89,4 @@ api/tmp
# vitepress
docs/.vitepress/node_modules
docs/.vitepress/cache
docs/.vitepress/dist
docs/.vitepress/dist
6 changes: 3 additions & 3 deletions package.json
Original file line number Diff line number Diff line change
Expand Up @@ -99,7 +99,7 @@
"@pdfme/generator": "^5.2.0",
"@pdfme/schemas": "^5.2.0",
"@pdfme/ui": "^5.2.0",
"@quasar/extras": "^1.16.3",
"@quasar/extras": "^1.16.15",
"@thumbmarkjs/thumbmarkjs": "^0.16.1",
"@tmcw/togeojson": "^4.5.0",
"@turf/along": "^6.5.0",
Expand Down Expand Up @@ -179,7 +179,7 @@
"pinch-zoom-element": "^1.1.1",
"pixi.js": "7.4.2",
"protomaps-leaflet": "^3.1.2",
"quasar": "^2.12.0",
"quasar": "^2.17.5",
"sanitize-html": "^2.7.0",
"showdown": "^2.1.0",
"shpjs": "^4.0.2",
Expand All @@ -200,7 +200,7 @@
},
"devDependencies": {
"@babel/eslint-parser": "^7.13.14",
"@quasar/app-webpack": "^3.9.2",
"@quasar/app-webpack": "^3.15.1",
"c8": "^7.11.0",
"chai": "^4.3.6",
"chai-lint": "^0.1.1",
Expand Down
11 changes: 7 additions & 4 deletions src/css/quasar.variables.scss
Original file line number Diff line number Diff line change
@@ -1,12 +1,15 @@
// Sass/SCSS variables customization
// https://quasar.dev/style/sass-scss-variables#variables-list


@use "sass:color";

// Theme
$primary: #293341;
$secondary: lighten($primary, 75%);
$accent: lighten($primary, 25%);
$dark: darken($primary, 25%);
$secondary: color.adjust($primary, $lightness: 75%, $space: hsl);
$accent: color.adjust($primary, $lightness: 25%, $space: hsl);
$dark: color.adjust($primary, $lightness: -25%, $space: hsl);
$info: $accent;

// Defaults KDK SCSS variables
@import 'kdk/core.variables';
@import 'kdk/core.variables';
Loading

0 comments on commit 1ad5114

Please sign in to comment.