set cursor pointer for icon buttons

This commit is contained in:
Alina Beck 2019-07-09 16:56:15 +02:00
parent fd171917d5
commit b91d60badf

View File

@ -12,13 +12,14 @@
     
<ds-icon <ds-icon
:aria-label="$t('actions.edit')" :aria-label="$t('actions.edit')"
class="layout-leave-active" class="layout-leave-active icon-button"
name="edit" name="edit"
:title="$t('actions.edit')" :title="$t('actions.edit')"
/> />
<a name="delete" @click="handleDeleteSocialMedia(link)"> <a name="delete" @click="handleDeleteSocialMedia(link)">
<ds-icon <ds-icon
:aria-label="$t('actions.delete')" :aria-label="$t('actions.delete')"
class="icon-button"
name="trash" name="trash"
:title="$t('actions.delete')" :title="$t('actions.delete')"
/> />
@ -140,6 +141,10 @@ export default {
</script> </script>
<style lang="scss"> <style lang="scss">
.icon-button {
cursor: pointer;
}
.layout-leave-active { .layout-leave-active {
opacity: 0.4; opacity: 0.4;
} }