Run prettier

This commit is contained in:
Kevin Kandlbinder 2021-12-13 18:06:03 +00:00 committed by GitHub
parent 458b155945
commit 783e56e59d
3 changed files with 24 additions and 26 deletions

View file

@ -74,6 +74,6 @@
},
"lint-staged": {
"*.js": "eslint --cache --fix",
"*.{js,css,md}": "prettier --write"
"*.{js,css,md,scss,json}": "prettier --write"
}
}

View file

@ -13,7 +13,7 @@ $theme: (
"orange": #e5752b,
"green": #18bb20,
"blue": #6d94e9,
"purple": #886af5
"purple": #886af5,
);
$theme-light: (
@ -24,11 +24,9 @@ $theme-light: (
"orange": #aa4f12,
"green": #17681b,
"blue": #2b66e5,
"purple": #6848da
"purple": #6848da,
);
$accentColor: map.get($theme, "accent");
$background: map.get($theme, "background");
$lightBackground: map.get($theme-light, "background");
@ -56,11 +54,12 @@ $skillColor5Light: map.get($theme-light, "purple");
$noticeColor: rgba($accentColor, 0.15);
$cardShadow: -1px 11px 33px -10px rgba(27, 27, 27, 0.3);
$cardHoverShadow: -1px 11px 33px -10px rgba(127, 127, 127, 0.2), -1px 11px 33px -10px rgba($accentColor, 0.75);
$cardHoverShadow: -1px 11px 33px -10px rgba(127, 127, 127, 0.2),
-1px 11px 33px -10px rgba($accentColor, 0.75);
$cardLightShadow: -1px 11px 33px -10px rgba(29, 29, 29, 0.7);
$cardLightHoverShadow: -1px 11px 33px -10px rgba(29, 29, 29, 0.2),
-1px 11px 33px -10px rgba($accentColor, 0.75);
-1px 11px 33px -10px rgba($accentColor, 0.75);
$homeProfileShadow: -1px 11px 33px -10px rgba($accentColor, 0.25);
$homeProfileClipFront: polygon(6% 8%, 88% 5%, 95% 91%, 7% 96%);
@ -70,7 +69,6 @@ $aboutCVShadow: 0 0 15px 0 rgba($accentColor, 0.25);
$aboutCVColorEdu: map.get($theme, "blue");
$aboutCVColorEduLight: map.get($theme-light, "blue");
@mixin homeBg {
background: linear-gradient(45deg, #000850 0%, #000320 100%),
radial-gradient(100% 225% at 100% 0%, #ff6928 0%, #000000 100%),

View file

@ -275,11 +275,11 @@
margin: 5px;
&.skill_framework {
color: $skillColor1
color: $skillColor1;
}
&.skill_platform {
color: $skillColor2
color: $skillColor2;
}
&.skill_program {