fix(icon): pin and pin_off #53

Merged
alexm merged 3 commits from fix_env into test 2023-05-11 06:59:05 +00:00
1 changed files with 2 additions and 4 deletions
Showing only changes of commit 1b95280a32 - Show all commits

View File

@ -200,13 +200,11 @@ async function togglePinned(item, event) {
</template>
<style>
.pinned .icon-push_pin,
.pinned .icon-remove_circle {
.pinned .q-btn {
visibility: hidden;
alexm marked this conversation as resolved Outdated

mirar si al poner un icono u otro te genera una clase de css y por ende funciona este código

mirar si al poner un icono u otro te genera una clase de css y por ende funciona este código
}
.pinned:hover .icon-push_pin,
.pinned:hover .icon-remove_circle {
.pinned:hover .q-btn {
visibility: visible;
}
</style>