lume/src/renderer/index.css

35 lines
666 B
CSS
Raw Normal View History

2023-02-21 07:58:47 +00:00
@tailwind base;
@tailwind components;
@tailwind utilities;
2023-04-24 02:43:07 +00:00
/* Fixed webkit bug: https://bugs.webkit.org/show_bug.cgi?id=243601 */
2023-03-23 02:43:02 +00:00
@supports (font: -apple-system-body) and (-webkit-appearance: none) {
img[loading='lazy'] {
2023-05-04 15:34:15 +00:00
clip-path: inset(0.6px);
2023-03-23 02:43:02 +00:00
}
}
2023-02-21 07:58:47 +00:00
/* For Webkit-based browsers (Chrome, Safari and Opera) */
.scrollbar-hide::-webkit-scrollbar {
display: none;
}
/* For IE, Edge and Firefox */
.scrollbar-hide {
-ms-overflow-style: none; /* IE and Edge */
scrollbar-width: none; /* Firefox */
}
.border {
background-clip: padding-box;
}
2023-03-27 07:20:19 +00:00
@keyframes loop {
0% {
transform: translateX(0);
}
100% {
transform: translateX(-50%);
}
}