2023-11-30 17:24:07 +07:00
|
|
|
/* @import 'reactflow/dist/style.css'; */
|
2023-10-01 15:00:38 +07:00
|
|
|
|
2023-12-04 14:02:07 +07:00
|
|
|
/* Vidstack */
|
|
|
|
@import '@vidstack/react/player/styles/default/theme.css';
|
|
|
|
@import '@vidstack/react/player/styles/default/layouts/video.css';
|
|
|
|
|
2023-02-21 14:58:47 +07:00
|
|
|
@tailwind base;
|
|
|
|
@tailwind components;
|
|
|
|
@tailwind utilities;
|
|
|
|
|
2023-10-24 13:11:10 +07:00
|
|
|
@layer utilities {
|
|
|
|
.break-p {
|
|
|
|
word-break: break-word;
|
|
|
|
word-wrap: break-word;
|
|
|
|
overflow-wrap: break-word;
|
|
|
|
}
|
2023-11-13 15:44:58 +07:00
|
|
|
|
|
|
|
.prose :where(iframe):not(:where([class~="not-prose"] *)) {
|
|
|
|
@apply aspect-video w-full h-auto mx-auto;
|
|
|
|
}
|
2023-10-24 13:11:10 +07:00
|
|
|
}
|
|
|
|
|
2023-09-29 09:11:38 +07:00
|
|
|
html {
|
|
|
|
font-size: 14px;
|
|
|
|
}
|
|
|
|
|
|
|
|
a {
|
|
|
|
@apply cursor-default no-underline !important;
|
|
|
|
}
|
|
|
|
|
|
|
|
button {
|
|
|
|
@apply cursor-default focus:outline-none;
|
|
|
|
}
|
|
|
|
|
|
|
|
input::-ms-reveal,
|
|
|
|
input::-ms-clear {
|
|
|
|
display: none;
|
|
|
|
}
|
|
|
|
|
|
|
|
::-webkit-input-placeholder {
|
|
|
|
line-height: normal;
|
|
|
|
}
|
|
|
|
|
2023-09-24 15:42:49 +07:00
|
|
|
.border {
|
|
|
|
background-clip: padding-box;
|
|
|
|
}
|
|
|
|
|
2023-10-09 15:17:15 +07:00
|
|
|
.ProseMirror p.is-empty::before {
|
2023-11-30 17:24:07 +07:00
|
|
|
@apply text-neutral-600 dark:text-neutral-400 float-left h-0 pointer-events-none content-[attr(data-placeholder)];
|
2023-10-09 15:17:15 +07:00
|
|
|
}
|
|
|
|
|
|
|
|
.ProseMirror img.ProseMirror-selectednode {
|
2023-10-10 08:25:31 +07:00
|
|
|
@apply outline-blue-500;
|
2023-10-01 15:00:38 +07:00
|
|
|
}
|