mirror of
https://github.com/duckietm/Nitro-Cool-UI.git
synced 2025-06-21 22:36:58 +00:00
27 lines
394 B
SCSS
27 lines
394 B
SCSS
@import './assets/styles';
|
|
|
|
html,
|
|
body {
|
|
padding: 0;
|
|
width: 100%;
|
|
height: 100%;
|
|
overflow: hidden;
|
|
user-select: none;
|
|
scrollbar-width: thin;
|
|
|
|
.image-rendering-pixelated {
|
|
image-rendering: pixelated;
|
|
image-rendering: -moz-crisp-edges;
|
|
}
|
|
|
|
* {
|
|
-webkit-font-smoothing: antialiased;
|
|
}
|
|
}
|
|
|
|
img {
|
|
object-fit: none;
|
|
}
|
|
|
|
@import './App';
|