diff options
| author | syuilo <Syuilotan@yahoo.co.jp> | 2023-05-08 08:13:41 +0900 |
|---|---|---|
| committer | syuilo <Syuilotan@yahoo.co.jp> | 2023-05-08 08:13:41 +0900 |
| commit | 5c80d9093b926f1746475b4d8d57ef50ab78c10e (patch) | |
| tree | 5fc46045c9d62e74a345d26a68a1fba171a94fcc /packages | |
| parent | fix(backend): fix channels/owned (diff) | |
| download | misskey-5c80d9093b926f1746475b4d8d57ef50ab78c10e.tar.gz misskey-5c80d9093b926f1746475b4d8d57ef50ab78c10e.tar.bz2 misskey-5c80d9093b926f1746475b4d8d57ef50ab78c10e.zip | |
fix(frontend): fix MkInput style
Diffstat (limited to 'packages')
| -rw-r--r-- | packages/frontend/src/components/MkInput.vue | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/packages/frontend/src/components/MkInput.vue b/packages/frontend/src/components/MkInput.vue index da6c338123..e48032d599 100644 --- a/packages/frontend/src/components/MkInput.vue +++ b/packages/frontend/src/components/MkInput.vue @@ -1,7 +1,7 @@ <template> <div> <div :class="$style.label" @click="focus"><slot name="label"></slot></div> - <div :class="[$style.input, { inline, disabled, focused }]"> + <div :class="[$style.input, { [$style.inline]: inline, [$style.disabled]: disabled, [$style.focused]: focused }]"> <div ref="prefixEl" :class="$style.prefix"><slot name="prefix"></slot></div> <input ref="inputEl" |