mirror of
https://github.com/bakhirev/assayo.git
synced 2024-11-17 00:31:20 +00:00
30 lines
336 B
SCSS
30 lines
336 B
SCSS
@import './variables.scss';
|
|
|
|
html {
|
|
box-sizing: border-box;
|
|
}
|
|
|
|
*,
|
|
*:before,
|
|
*:after {
|
|
outline: none;
|
|
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%;
|
|
}
|