mirror of
https://github.com/TryGhost/Ghost.git
synced 2025-03-25 02:31:59 -05:00
27 lines
500 B
CSS
27 lines
500 B
CSS
@tailwind base;
|
|
@tailwind components;
|
|
@tailwind utilities;
|
|
|
|
:host {
|
|
/* Reset all CSS properties */
|
|
all: initial !important;
|
|
}
|
|
|
|
html {
|
|
font-size: 62.5%;
|
|
}
|
|
|
|
body {
|
|
font-size: 1.5rem;
|
|
}
|
|
|
|
/* The following lines are needed for the editor */
|
|
/* Placeholder */
|
|
.ProseMirror p.is-editor-empty:first-child::before {
|
|
content: attr(data-placeholder);
|
|
float: left;
|
|
height: 0;
|
|
pointer-events: none;
|
|
--tw-text-opacity: 1;
|
|
color: rgb(212 212 212 / var(--tw-text-opacity));
|
|
}
|