mirror of
https://github.com/ershisan99/flashcards-example-project.git
synced 2025-12-17 05:09:29 +00:00
lesson 1, chapter 2: storybook setup
This commit is contained in:
41
src/styles/_boilerplate.scss
Normal file
41
src/styles/_boilerplate.scss
Normal file
@@ -0,0 +1,41 @@
|
||||
html {
|
||||
box-sizing: border-box;
|
||||
font-size: 100%;
|
||||
|
||||
-webkit-font-smoothing: antialiased;
|
||||
-moz-osx-font-smoothing: grayscale;
|
||||
}
|
||||
|
||||
*,
|
||||
*::before,
|
||||
*::after {
|
||||
box-sizing: border-box;
|
||||
}
|
||||
|
||||
input,
|
||||
button,
|
||||
select,
|
||||
textarea,
|
||||
optgroup,
|
||||
option {
|
||||
font-family: inherit;
|
||||
font-size: inherit;
|
||||
font-weight: inherit;
|
||||
font-style: inherit;
|
||||
color: inherit;
|
||||
}
|
||||
|
||||
a:visited {
|
||||
color: inherit;
|
||||
}
|
||||
|
||||
body {
|
||||
margin: 0;
|
||||
padding: 0;
|
||||
|
||||
font-family: var(--font-family-primary), sans-serif;
|
||||
line-height: var(--line-height-m);
|
||||
color: var(--color-light-100);
|
||||
|
||||
background-color: var(--color-dark-900);
|
||||
}
|
||||
Reference in New Issue
Block a user