mirror of
https://github.com/bakhirev/assayo.git
synced 2024-11-17 00:31:20 +00:00
29 lines
316 B
SCSS
29 lines
316 B
SCSS
|
@import './variables.scss';
|
||
|
|
||
|
html {
|
||
|
box-sizing: border-box;
|
||
|
}
|
||
|
|
||
|
*,
|
||
|
*:before,
|
||
|
*:after {
|
||
|
box-sizing: inherit;
|
||
|
}
|
||
|
|
||
|
body,
|
||
|
input,
|
||
|
select {
|
||
|
font-family: Arial, sans-serif;
|
||
|
color: var(--color-neutral-black);
|
||
|
}
|
||
|
|
||
|
html,
|
||
|
body,
|
||
|
#root {
|
||
|
height: 100%;
|
||
|
}
|
||
|
|
||
|
img {
|
||
|
max-width: 100%;
|
||
|
}
|