From 48a1c3462bb4f17ed3a5f4c3e736bac2e8b7626d Mon Sep 17 00:00:00 2001 From: patrickjahr Date: Fri, 19 Apr 2024 08:15:40 +0200 Subject: [PATCH] feat(lib): add style file for users --- apps/demo-app/src/styles.css | 13 +++++-------- 1 file changed, 5 insertions(+), 8 deletions(-) diff --git a/apps/demo-app/src/styles.css b/apps/demo-app/src/styles.css index 8d63845..c71bac2 100644 --- a/apps/demo-app/src/styles.css +++ b/apps/demo-app/src/styles.css @@ -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; @@ -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;