-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
patrickjahr
committed
Apr 19, 2024
1 parent
c13d8b5
commit 307d48f
Showing
1 changed file
with
22 additions
and
22 deletions.
There are no files selected for viewing
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,33 +1,33 @@ | ||
/* TODO: move to lib component*/ | ||
@import '@angular/cdk/overlay-prebuilt.css'; | ||
/* TODO: move to lib component */ | ||
@import url('libs/sketch/src/lib/styles/styles.css'); | ||
|
||
/* You can add global styles to this file, and also import other style files */ | ||
:root { | ||
--sk-top-bar-height: 84px; | ||
--sk-font-family: Montserrat, 'Helevetika Neue', sans-serif; | ||
--sk-primary-color-rgb: 252, 0, 84; | ||
--sk-primary-color: rgb(var(--sk-primary-color-rgb)); | ||
--sk-secondary-color-rgb: 59, 61, 64; | ||
--sk-secondary-color: rgb(var(--sk-secondary-color-rgb)); | ||
--sk-top-bar-height: 84px; | ||
--sk-font-family: Montserrat, 'Helevetika Neue', sans-serif; | ||
--sk-primary-color-rgb: 252, 0, 84; | ||
--sk-primary-color: rgb(var(--sk-primary-color-rgb)); | ||
--sk-secondary-color-rgb: 59, 61, 64; | ||
--sk-secondary-color: rgb(var(--sk-secondary-color-rgb)); | ||
} | ||
|
||
* { | ||
padding: 0; | ||
margin: 0; | ||
box-sizing: border-box; | ||
padding: 0; | ||
margin: 0; | ||
box-sizing: border-box; | ||
} | ||
|
||
html, | ||
body { | ||
font-family: var(--sk-font-family); | ||
color: rgb(255, 255, 255); | ||
background: rgb(59, 61, 64); | ||
background: linear-gradient( | ||
149deg, | ||
rgba(var(--sk-secondary-color-rgb), 1) 0%, | ||
rgba(var(--sk-primary-color-rgb), 1) 100% | ||
); | ||
background-repeat: no-repeat; | ||
height: 100svh; | ||
overflow: hidden; | ||
font-family: var(--sk-font-family); | ||
color: rgb(255, 255, 255); | ||
background: rgb(59, 61, 64); | ||
background: linear-gradient( | ||
149deg, | ||
rgba(var(--sk-secondary-color-rgb), 1) 0%, | ||
rgba(var(--sk-primary-color-rgb), 1) 100% | ||
); | ||
background-repeat: no-repeat; | ||
height: 100svh; | ||
overflow: hidden; | ||
} |