RWKV-Runner/frontend/src/style.css

27 lines
396 B
CSS
Raw Normal View History

2023-05-04 23:55:24 +08:00
@tailwind base;
@tailwind components;
@tailwind utilities;
2023-05-03 23:38:54 +08:00
body {
2023-05-06 20:17:39 +08:00
margin: 0;
overflow: hidden;
2023-05-03 23:38:54 +08:00
}
2023-05-06 20:17:39 +08:00
* {
scrollbar-width: thin;
}
/* Works on Chrome, Edge, and Safari */
*::-webkit-scrollbar {
width: 9px;
}
*::-webkit-scrollbar-thumb {
background-color: rgba(155, 155, 155, 0.5);
border-radius: 20px;
border: transparent;
}
*::-webkit-scrollbar-track {
background: transparent;
}