fix: clipboard
This commit is contained in:
@@ -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;
|
||||
|
||||
Reference in New Issue
Block a user