@import "./utilities.css";
/* @import "./core-blocks.css"; */
@import "./theme.css";

.editor-visual-editor__post-title-wrapper,
.edit-post-visual-editor__post-title-wrapper {
    >h1 {
        background-color: white;
        white-space: pre-wrap;
        min-width: 1px;
        font-size: 2rem;
        color: black;
        border-radius: 5px;
        padding-left: 10px;
        position: relative;

        &::before {
            content: "Title: ";
            font-size: 11px;
            font-weight: 500;
            line-height: 1.4;
            text-transform: uppercase;
            display: block;
            margin-bottom: calc(8px);
            padding: 0px;
            color: rgb(73, 73, 73);
            position: absolute;
            bottom: 47px;
            left: 8px;
        }
    }
}