48 lines
983 B
CSS
48 lines
983 B
CSS
@tailwind base;
|
|
@tailwind components;
|
|
@tailwind utilities;
|
|
|
|
html {
|
|
font-size: 14px;
|
|
}
|
|
|
|
a {
|
|
@apply cursor-default no-underline !important;
|
|
}
|
|
|
|
button {
|
|
@apply cursor-default focus:outline-none;
|
|
}
|
|
|
|
.markdown {
|
|
@apply prose prose-zinc max-w-none select-text break-words dark:prose-invert prose-p:m-0 prose-p:leading-tight prose-a:font-normal prose-a:leading-tight prose-a:text-fuchsia-500 hover:prose-a:text-fuchsia-600 prose-ol:mb-1 prose-ul:mb-1 prose-li:leading-tight prose-blockquote:m-0 prose-hr:mx-0 prose-hr:my-2;
|
|
}
|
|
|
|
/* 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;
|
|
}
|
|
|
|
span[data-slate-placeholder] {
|
|
@apply top-0;
|
|
}
|
|
|
|
@keyframes loop {
|
|
0% {
|
|
transform: translateX(0);
|
|
}
|
|
100% {
|
|
transform: translateX(-50%);
|
|
}
|
|
}
|