webapp/src/components/Editor/EditorFloatingMenu/EditorFloatingMenu.module.scss
Igor Lobanov bd6e014cdf
insert link enter fix (#94)
* floating plus fix, esc fix

* a href="#" -> span
2023-05-12 15:45:31 +02:00

28 lines
382 B
SCSS

.editorFloatingMenu {
left: 0;
position: relative;
vertical-align: middle;
padding-top: 5px;
button {
opacity: 0.3;
transition: opacity 0.3s ease-in-out;
&:hover {
opacity: 1;
}
}
.menuHolder {
background: #fff;
left: 24px;
position: absolute;
top: -4px;
min-width: 64vw;
}
}
:global(.tippy-box) {
line-height: 1.3;
}