assayo/src/styles/base.scss

30 lines
336 B
SCSS
Raw Normal View History

2023-05-12 11:47:48 +00:00
@import './variables.scss';
html {
box-sizing: border-box;
}
*,
*:before,
*:after {
2024-02-28 20:17:21 +00:00
outline: none;
2023-05-12 11:47:48 +00:00
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%;
}