1
0
Fork 0
mirror of https://github.com/paricafe/misskey.git synced 2025-03-24 09:49:26 -05:00

CWの中のサムネイルのサイズが変なのを修正 ()

* Fix 

* Revert "Fix "

This reverts commit 72b32df2b74743bede6fff0dbc37fec352cff51f.

* Fix media-list height

* fix
This commit is contained in:
MeiMei 2019-08-24 19:20:53 +09:00 committed by syuilo
parent ff52ea2a7c
commit 9d6c8806af

View file

@ -35,7 +35,8 @@ export default Vue.extend({
mounted() {
//#region for Safari bug
if (this.$refs.grid) {
this.$refs.grid.style.height = this.$refs.grid.clientHeight ? `${this.$refs.grid.clientHeight}px` : '128px';
this.$refs.grid.style.height = this.$refs.grid.clientHeight ? `${this.$refs.grid.clientHeight}px`
: this.$store.state.device.inDeckMode ? '128px' : this.$root.isMobile ? '173px' : '287px';
}
//#endregion
},