KDesktop/index.css
Triston Armstrong 0f4e13f6b0 make progress
2024-06-21 23:15:45 -05:00

36 lines
506 B
CSS

@tailwind base;
@tailwind components;
@tailwind utilities;
* {
box-sizing: border-box;
}
html {
overflow: hidden;
padding: 0;
margin: 0;
}
body {
width: 100vw;
height: 100vh;
overflow: hidden;
padding: 0;
margin: 0;
}
#wallpaper {
position: fixed;
top: -1;
left: -1;
width: 101vw;
height: 101vh;
background-image: url("./assets/wallpaper.png");
background-size: cover;
background-repeat: no-repeat;
background-position: center;
z-index: -1;
filter: blur(2px);
}