lume/src/renderer/index.css

44 lines
632 B
CSS
Raw Normal View History

2023-02-21 07:58:47 +00:00
@tailwind base;
@tailwind components;
@tailwind utilities;
2023-05-20 14:00:09 +00:00
html {
font-size: 14px;
2023-03-23 02:43:02 +00:00
}
2023-05-14 08:51:56 +00:00
a {
@apply cursor-default;
}
button {
@apply cursor-default focus:outline-none;
}
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
2023-05-12 01:34:08 +00:00
span[data-slate-placeholder] {
@apply top-0;
}
2023-03-27 07:20:19 +00:00
@keyframes loop {
0% {
transform: translateX(0);
}
100% {
transform: translateX(-50%);
}
}