mirror of
https://github.com/m1k1o/neko.git
synced 2025-06-13 08:12:57 +02:00
client linter fix.
This commit is contained in:
parent
0e5e1faf35
commit
15edc0f73e
8 changed files with 36 additions and 43 deletions
|
@ -1,14 +1,6 @@
|
|||
<template>
|
||||
<div
|
||||
class="clipboard"
|
||||
v-if="opened"
|
||||
@click="$event.stopPropagation()"
|
||||
>
|
||||
<textarea
|
||||
ref="textarea"
|
||||
v-model="clipboard"
|
||||
@focus="$event.target.select()"
|
||||
/>
|
||||
<div class="clipboard" v-if="opened" @click="$event.stopPropagation()">
|
||||
<textarea ref="textarea" v-model="clipboard" @focus="$event.target.select()" />
|
||||
</div>
|
||||
</template>
|
||||
|
||||
|
@ -23,7 +15,8 @@
|
|||
bottom: 10px;
|
||||
right: 10px;
|
||||
|
||||
&, textarea {
|
||||
&,
|
||||
textarea {
|
||||
max-width: 320px;
|
||||
width: 100%;
|
||||
max-height: 120px;
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue