Skip to content

Commit

Permalink
feat(lib): add style file for users
Browse files Browse the repository at this point in the history
  • Loading branch information
patrickjahr committed Apr 19, 2024
1 parent c13d8b5 commit 48a1c34
Showing 1 changed file with 5 additions and 8 deletions.
13 changes: 5 additions & 8 deletions apps/demo-app/src/styles.css
Original file line number Diff line number Diff line change
@@ -1,10 +1,7 @@
/* TODO: move to lib component*/
@import '@angular/cdk/overlay-prebuilt.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-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;
Expand All @@ -20,12 +17,12 @@
html,
body {
font-family: var(--sk-font-family);
color: rgb(255, 255, 255);
background: rgb(59, 61, 64);
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%
rgb(var(--sk-secondary-color-rgb) 1) 0%,
rgb(var(--sk-primary-color-rgb) 1) 100%
);
background-repeat: no-repeat;
height: 100svh;
Expand Down

0 comments on commit 48a1c34

Please sign in to comment.