guesstimate/src/components/editable-text/style.css

17 lines
237 B
CSS
Raw Normal View History

2020-04-21 09:24:39 +02:00
.editableText {
display: inherit;
}
.editableText > * {
display: inline-block;
}
.editIcon {
visibility: hidden;
margin-left: 0.25em;
cursor: pointer;
}
.editableText:hover > .editIcon {
visibility: visible;
}