diff options
| author | syuilo <syuilotan@yahoo.co.jp> | 2021-02-27 11:18:53 +0900 |
|---|---|---|
| committer | syuilo <syuilotan@yahoo.co.jp> | 2021-02-27 11:18:53 +0900 |
| commit | 06e817af597e7ee621bdeb370c72d7555482d943 (patch) | |
| tree | 3d2c9834769efc4498bf9eb1dff63b36921ed602 /src/client/components/instance-stats.vue | |
| parent | fix migration script (diff) | |
| download | misskey-06e817af597e7ee621bdeb370c72d7555482d943.tar.gz misskey-06e817af597e7ee621bdeb370c72d7555482d943.tar.bz2 misskey-06e817af597e7ee621bdeb370c72d7555482d943.zip | |
perf: use overflow: clip instead of hidden
Diffstat (limited to 'src/client/components/instance-stats.vue')
| -rw-r--r-- | src/client/components/instance-stats.vue | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/src/client/components/instance-stats.vue b/src/client/components/instance-stats.vue index e9b496180a..80070996fc 100644 --- a/src/client/components/instance-stats.vue +++ b/src/client/components/instance-stats.vue @@ -692,7 +692,8 @@ export default defineComponent({ > dd { text-overflow: ellipsis; - overflow: hidden; + overflow: hidden; // overflow: clip; をSafariが対応したら消す + overflow: clip; white-space: nowrap; } |