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

17 lines
242 B
CSS
Raw Normal View History

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