webapp/src/components/_shared/CommentEditor/styles/ProseMirrorOverrides.scss

42 lines
605 B
SCSS
Raw Normal View History

.ProseMirrorOverrides > .ProseMirror {
2023-05-13 20:17:04 +00:00
min-height: 5em;
2023-02-17 18:12:28 +00:00
&-focused {
outline: none;
}
.paragraph {
font-size: 15px;
line-height: 1.1em;
}
blockquote {
padding-left: 10px;
font-style: italic;
font-weight: 400;
color: #9fa1a7;
border-left: 2px solid #696969;
}
}
2023-05-13 20:17:04 +00:00
.ProseMirror-icon {
align-items: center;
border-radius: 0.2rem;
cursor: pointer;
display: flex;
height: 100%;
justify-content: center;
opacity: 0.5;
vertical-align: middle;
width: 2em;
&:hover {
background: #e8e8e8;
opacity: 1;
}
svg {
height: 1.4em;
}
}