mirror of
https://github.com/billsonnn/nitro-react.git
synced 2024-11-27 08:00:51 +01:00
25 lines
347 B
SCSS
25 lines
347 B
SCSS
|
|
@import './assets/styles';
|
|
|
|
html,
|
|
body {
|
|
padding: 0;
|
|
width: 100%;
|
|
height: 100%;
|
|
overflow: hidden;
|
|
user-select: none;
|
|
image-rendering: pixelated;
|
|
image-rendering: -moz-crisp-edges;
|
|
scrollbar-width: thin;
|
|
|
|
* {
|
|
-webkit-font-smoothing: antialiased;
|
|
}
|
|
}
|
|
|
|
img {
|
|
object-fit: none;
|
|
}
|
|
|
|
@import './App';
|