markdown-home-tab/src/modules/editor/components/ReactMarkdownViewer/styles.module.scss
2023-04-27 16:58:02 +06:00

33 lines
453 B
SCSS

.editor {
min-height: 100%;
box-sizing: border-box;
}
.edit {
position: absolute;
bottom: 0;
right: 0;
opacity: 0;
transition: opacity 0.25s;
padding: 10px;
.editor:hover & {
opacity: 0.5;
}
&:hover {
opacity: 1 !important;
}
}
.content {
& > :first-child {
margin-top: 0 !important;
margin-left: 0 !important;
}
& > :last-child {
margin-bottom: 0 !important;
margin-right: 0 !important;
}
}