Skip to content

_tinyMCE.scss

base/_tinyMCE.scss
@use '../abstracts/' as *;
.mce-content-body {
// eigene Formatierungen
margin: 0;
padding: 0.5rem;
font-family: $body-font-family;
font-weight: $body-font-weight;
font-size: $body-font-size;
line-height: $body-line-height;
color: $body-text-color;
> * + * {
margin-block-start: 1em;
}
// Längenbegrenzung aufheben - hat im Editor keinen Sinn
p {
max-width: unset;
}
}