diff options
| author | anoduck <11767-anoduck@users.noreply.gitgud.io> | 2024-09-24 03:17:01 -0400 |
|---|---|---|
| committer | anoduck <11767-anoduck@users.noreply.gitgud.io> | 2024-09-24 03:17:20 -0400 |
| commit | ecaa4c30be24fd7fd55eea888ca0a6d18a140d60 (patch) | |
| tree | 03d647a92be5d7d44404fd349c86f9d9c0df0f66 /assets/scss/custom.scss | |
| parent | 95537baacd1532fdc65db12f80afcffcaa4573f5 (diff) | |
ch-ch-changes
Diffstat (limited to 'assets/scss/custom.scss')
| -rw-r--r-- | assets/scss/custom.scss | 12 |
1 files changed, 12 insertions, 0 deletions
diff --git a/assets/scss/custom.scss b/assets/scss/custom.scss index 37ae8de..10095f5 100644 --- a/assets/scss/custom.scss +++ b/assets/scss/custom.scss @@ -6,4 +6,16 @@ @import "../node_modules/bootstrap/scss/bootstrap"; // Then add additional custom code here +.gradient-featured { + background: $white; + background: linear-gradient(135deg, $white 0%, tint-color($primary, 80%) 100%); +} +@if $enable-dark-mode { + @include color-mode(dark) { + .gradient-featured { + background: rgb(17,0,84); + background: linear-gradient(90deg, rgba(17,0,84,1) 25%, rgba(184,78,92,1) 100%); + } + } +}
\ No newline at end of file |
