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 307d48f
Showing 1 changed file with 22 additions and 22 deletions.
44 changes: 22 additions & 22 deletions apps/demo-app/src/styles.css
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;
}

0 comments on commit 307d48f

Please sign in to comment.