KDesktop/index.css

36 lines
506 B
CSS
Raw Permalink Normal View History

2024-06-20 18:54:10 +00:00
@tailwind base;
@tailwind components;
@tailwind utilities;
2024-06-19 19:46:29 +00:00
* {
box-sizing: border-box;
}
html {
overflow: hidden;
padding: 0;
margin: 0;
}
body {
width: 100vw;
height: 100vh;
overflow: hidden;
padding: 0;
margin: 0;
}
2024-06-21 01:10:37 +00:00
#wallpaper {
position: fixed;
top: -1;
left: -1;
width: 101vw;
height: 101vh;
2024-06-22 04:15:45 +00:00
background-image: url("./assets/wallpaper.png");
2024-06-21 01:10:37 +00:00
background-size: cover;
background-repeat: no-repeat;
background-position: center;
z-index: -1;
filter: blur(2px);
}