Skip to content

Commit

Permalink
fix(sass): fixing imports and case error
Browse files Browse the repository at this point in the history
  • Loading branch information
manoncarbonnel committed Oct 13, 2023
1 parent a4f9b41 commit 54a65b2
Show file tree
Hide file tree
Showing 5 changed files with 4 additions and 3 deletions.
1 change: 1 addition & 0 deletions .stylelintignore
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
packages/themes/blue-jeans/src/fonts/family/base64-fonts.scss
2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
Expand Up @@ -43,7 +43,7 @@
"lerna:ls:pl": "lerna ls -pl",
"lint": "eslint '*/**/*.{js,ts,tsx}'",
"lint:scss": "lerna run lint:scss",
"lint:scss:report": "stylelint 'packages/themes/*/src/**/!(base64-fonts)*.scss' 'packages/components/**/*.scss' --custom-formatter node_modules/stylelint-formatter-html > stylelint-report.html",
"lint:scss:report": "stylelint 'packages/themes/*/src/**/*.scss' 'packages/components/**/*.scss' --custom-formatter node_modules/stylelint-formatter-html > stylelint-report.html",
"list:releases": "lerna run list:releases",
"ods:graduate": "yarn ods:release:prepare && yarn version:graduate",
"ods:major": "yarn ods:release:prepare && yarn version:major",
Expand Down
1 change: 1 addition & 0 deletions packages/themes/blue-jeans/.stylelintignore
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
src/fonts/family/base64-fonts.scss
1 change: 0 additions & 1 deletion packages/themes/blue-jeans/src/fonts/index.scss
Original file line number Diff line number Diff line change
Expand Up @@ -3,6 +3,5 @@
* Here is the whole typography system we are using in the OVHcloud universe.
* It contains its definition, and the related behaviour around it.
*/
@import 'family/index';
@import 'sizes';
@import 'weights';
2 changes: 1 addition & 1 deletion packages/themes/blue-jeans/src/index.scss
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@
@import './spacing/index';

:root {
--ods-font-family: 'Source Sans Pro', 'Trebuchet MS', Arial, 'Segoe UI', sans-serif;
--ods-font-family: 'Source Sans Pro', 'Trebuchet MS', arial, 'Segoe UI', sans-serif;
--ods-toggle-transition-slider: 0.3s;
--ods-toggle-animation-checking-shadow: steam 3s linear infinite;
--ods-accordion-animation-opening: toggle 0.3s;
Expand Down

0 comments on commit 54a65b2

Please sign in to comment.