diff options
| author | syuilo <Syuilotan@yahoo.co.jp> | 2022-02-02 00:27:22 +0900 |
|---|---|---|
| committer | syuilo <Syuilotan@yahoo.co.jp> | 2022-02-02 00:27:22 +0900 |
| commit | 557003d5c44b1c97f8d08c9ea29d81c54f3d7484 (patch) | |
| tree | b8c7ab1ae342a76bef9278d6b6ff8bac277ab41d | |
| parent | fix: Fix Sideview (#8235) (diff) | |
| download | misskey-557003d5c44b1c97f8d08c9ea29d81c54f3d7484.tar.gz misskey-557003d5c44b1c97f8d08c9ea29d81c54f3d7484.tar.bz2 misskey-557003d5c44b1c97f8d08c9ea29d81c54f3d7484.zip | |
tweak
| -rw-r--r-- | packages/client/src/pages/federation.vue | 7 |
1 files changed, 3 insertions, 4 deletions
diff --git a/packages/client/src/pages/federation.vue b/packages/client/src/pages/federation.vue index a4ae901f2a..3c5050cdb8 100644 --- a/packages/client/src/pages/federation.vue +++ b/packages/client/src/pages/federation.vue @@ -115,7 +115,7 @@ const pagination = { offsetMode: true, params: computed(() => ({ sort: sort, - host: host != '' ? host : null, + host: host !== '' ? host : null, ...( state === 'federating' ? { federating: true } : state === 'subscribing' ? { subscribing: true } : @@ -157,11 +157,10 @@ defineExpose({ > .instance { padding: 16px; - border: solid 1px var(--divider); - border-radius: 6px; + background: var(--panel); + border-radius: 8px; &:hover { - border: solid 1px var(--accent); text-decoration: none; } |