diff options
| author | syuilo <Syuilotan@yahoo.co.jp> | 2022-12-27 18:01:06 +0900 |
|---|---|---|
| committer | syuilo <Syuilotan@yahoo.co.jp> | 2022-12-27 18:01:06 +0900 |
| commit | ada04c1932dd694af1775e562fdcfa2c506454de (patch) | |
| tree | d2c7b066f6f3f6358709a1d2595093c15edcc7b5 /packages/frontend/src/components/MkEmojiPickerWindow.vue | |
| parent | clean up (diff) | |
| download | misskey-ada04c1932dd694af1775e562fdcfa2c506454de.tar.gz misskey-ada04c1932dd694af1775e562fdcfa2c506454de.tar.bz2 misskey-ada04c1932dd694af1775e562fdcfa2c506454de.zip | |
perf?(client): remove needless scoped annotation for style
Diffstat (limited to 'packages/frontend/src/components/MkEmojiPickerWindow.vue')
| -rw-r--r-- | packages/frontend/src/components/MkEmojiPickerWindow.vue | 5 |
1 files changed, 3 insertions, 2 deletions
diff --git a/packages/frontend/src/components/MkEmojiPickerWindow.vue b/packages/frontend/src/components/MkEmojiPickerWindow.vue index 523e4ba695..04b8c5cc18 100644 --- a/packages/frontend/src/components/MkEmojiPickerWindow.vue +++ b/packages/frontend/src/components/MkEmojiPickerWindow.vue @@ -1,5 +1,6 @@ <template> -<MkWindow ref="window" +<MkWindow + ref="window" :initial-width="null" :initial-height="null" :can-resize="false" @@ -34,7 +35,7 @@ function chosen(emoji: any) { } </script> -<style lang="scss" scoped> +<style lang="scss"> .omfetrab { $pad: 8px; --eachSize: 40px; |