mirror of
https://github.com/Codennnn/vue-color-avatar.git
synced 2024-12-22 12:02:38 +00:00
fix: clipboard
This commit is contained in:
parent
69870f8dca
commit
46bf224ace
@ -245,7 +245,8 @@ function handleAction(actionType: ActionType) {
|
||||
color: lighten($color-text, 10);
|
||||
}
|
||||
|
||||
&:disabled {
|
||||
&:disabled,
|
||||
&[disabled] {
|
||||
color: rgba($color-text, 0.5);
|
||||
cursor: default;
|
||||
}
|
||||
|
@ -1,7 +1,7 @@
|
||||
<template>
|
||||
<transition name="fade">
|
||||
<div v-if="props.visible" class="code-modal" @click="emit('close')">
|
||||
<div class="code-box" @click.stop>
|
||||
<div v-if="props.visible" class="code-modal" @click.self="emit('close')">
|
||||
<div class="code-box">
|
||||
<div class="code-header">
|
||||
<div class="title">{{ t('text.codeModalTitle') }}</div>
|
||||
|
||||
|
@ -35,6 +35,7 @@ import Logo from '@/components/Logo.vue'
|
||||
margin-left: 1rem;
|
||||
font-weight: bold;
|
||||
font-size: 1.9rem;
|
||||
cursor: default;
|
||||
|
||||
@media screen and (max-width: $screen-sm) {
|
||||
display: none;
|
||||
|
Loading…
Reference in New Issue
Block a user