feat: add transition to input icons

This commit is contained in:
kolaente 2023-04-12 18:24:59 +02:00 committed by konrad
parent 2174608801
commit abb5128426
2 changed files with 8 additions and 3 deletions

View File

@ -107,10 +107,9 @@ const mode = ref(getQuickAddMagicMode())
const prefixes = computed(() => PREFIXES[mode.value])
</script>
<style scoped>
<style lang="scss" scoped>
.show-helper-text {
right: 0;
pointer-events: auto !important;
color: inherit !important;
}
</style>

View File

@ -57,7 +57,7 @@
}
.field.has-addons .control .select select {
height: 100%;
height: 100%;
}
.control.has-icons-left .icon,
@ -103,3 +103,9 @@ h1, h2, h3 {
height: auto;
}
}
// Global style, because the rest of this styling is imported from bulma
.control.has-icons-left .icon,
.control.has-icons-right .icon {
transition: all $transition;
}