aboutsummaryrefslogtreecommitdiffstats
path: root/src/styles/badge.scss
diff options
context:
space:
mode:
authorLibravatar MCMXC <16797721+mcmxcdev@users.noreply.github.com>2023-07-25 09:20:43 -0600
committerLibravatar Vijay Aravamudhan <vraravam@users.noreply.github.com>2023-07-26 16:28:22 +0000
commit4bd3d6764bfd48c881d9722825309ddb5956c758 (patch)
tree53296e94d91ab2cdc57c4d32a1fbcee071ae7923 /src/styles/badge.scss
parentchore: upgrade @octokit/core to latest (diff)
downloadferdium-app-4bd3d6764bfd48c881d9722825309ddb5956c758.tar.gz
ferdium-app-4bd3d6764bfd48c881d9722825309ddb5956c758.tar.zst
ferdium-app-4bd3d6764bfd48c881d9722825309ddb5956c758.zip
style: reformat all files properly
- remove .json from .eslintignore - add type intellisense to .prettierrc.js - install missing @jest/types which is used in jest.config.js - split up typecheck and lint into two separate commands - remove --require-pragma flag from reformat-files which leads to unformatted files - install suggested @types/prop-types and @types/react-loader dependencies - add @ts-expect-error to Loader usages - reformat all scss files automatically with reformat-files command
Diffstat (limited to 'src/styles/badge.scss')
-rw-r--r--src/styles/badge.scss6
1 files changed, 2 insertions, 4 deletions
diff --git a/src/styles/badge.scss b/src/styles/badge.scss
index 78309ea18..0ac17c6ed 100644
--- a/src/styles/badge.scss
+++ b/src/styles/badge.scss
@@ -10,7 +10,6 @@
10 } 10 }
11} 11}
12 12
13
14.badge { 13.badge {
15 background: $theme-gray-lighter; 14 background: $theme-gray-lighter;
16 border-radius: $theme-border-radius; 15 border-radius: $theme-border-radius;
@@ -21,12 +20,11 @@
21 20
22 &.badge--primary { 21 &.badge--primary {
23 background: $theme-brand-primary; 22 background: $theme-brand-primary;
24 color: #FFF; 23 color: #fff;
25 } 24 }
26 25
27 &.badge--success { 26 &.badge--success {
28 background: $theme-brand-success; 27 background: $theme-brand-success;
29 color: #FFF; 28 color: #fff;
30 } 29 }
31
32} 30}