mirror of
https://github.com/muerwre/markdown-home-tab.git
synced 2025-04-24 16:36:41 +07:00
33 lines
453 B
SCSS
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;
|
|
}
|
|
}
|