-
Notifications
You must be signed in to change notification settings - Fork 486
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge branch 'master' into shortcuts
- Loading branch information
Showing
553 changed files
with
22,624 additions
and
8,180 deletions.
There are no files selected for viewing
685 changes: 343 additions & 342 deletions
685
.yarn/releases/yarn-4.1.1.cjs → .yarn/releases/yarn-4.3.0.cjs
100755 → 100644
Large diffs are not rendered by default.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,3 +1,3 @@ | ||
nodeLinker: node-modules | ||
|
||
yarnPath: .yarn/releases/yarn-4.1.1.cjs | ||
yarnPath: .yarn/releases/yarn-4.3.0.cjs |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,59 @@ | ||
@tailwind base; | ||
@tailwind components; | ||
@tailwind utilities; | ||
|
||
@layer base { | ||
:root { | ||
--color-primary-base: 46 117 163; | ||
--color-primary-gradient: 36 77 103; | ||
--color-primary-button-text: 46 117 163; | ||
--color-primary-button-alternative-text: 255 255 255; | ||
|
||
--color-secondary-base: 243 126 47; | ||
--color-secondary-gradient: 224 100 16; | ||
--color-secondary-button-text: 255 255 255; | ||
|
||
--color-tertiary-base: 51 51 51; | ||
--color-tertiary-gradient: 0 0 0; | ||
--color-tertiary-button-text: 255 255 255; | ||
|
||
--color-success-base: 119 170 12; | ||
--color-success-gradient: 83 127 0; | ||
--color-success-button-text: 255 255 255; | ||
|
||
--color-info-base: 13 123 253; | ||
--color-info-gradient: 0 84 211; | ||
--color-info-button-text: 255 255 255; | ||
|
||
--color-warning-base: 245 206 1; | ||
--color-warning-gradient: 186 152 0; | ||
--color-warning-button-text: 0 0 0; | ||
|
||
--color-danger-base: 223 59 59; | ||
--color-danger-gradient: 180 0 21; | ||
--color-danger-button-text: 255 255 255; | ||
|
||
--color-form-base: 46 117 163; | ||
} | ||
} | ||
|
||
@import "../scss/settings/typography"; | ||
|
||
@import "../scss/libs/mediaelementjs/styles"; | ||
|
||
body { | ||
@apply prose max-w-none space-y-4 | ||
prose-h1:text-h1 | ||
prose-h2:text-h2 | ||
prose-h3:text-h3 | ||
prose-h4:text-h4 | ||
prose-h5:text-h5 | ||
prose-h6:text-h6 | ||
prose-img:inline-block prose-img:my-2 | ||
prose-a:text-info | ||
; | ||
|
||
> * { | ||
@apply my-0; | ||
} | ||
} |
Oops, something went wrong.