diff options
| author | syuilo <Syuilotan@yahoo.co.jp> | 2023-09-18 11:42:26 +0900 |
|---|---|---|
| committer | syuilo <Syuilotan@yahoo.co.jp> | 2023-09-18 11:42:26 +0900 |
| commit | 350ebbadba3b1ce2f1f5b082fc62160ce8a72cad (patch) | |
| tree | 9791eee4a2da64977318e0395e5766b9dcff7da5 | |
| parent | 2023.9.0-beta.8 (diff) | |
| download | misskey-350ebbadba3b1ce2f1f5b082fc62160ce8a72cad.tar.gz misskey-350ebbadba3b1ce2f1f5b082fc62160ce8a72cad.tar.bz2 misskey-350ebbadba3b1ce2f1f5b082fc62160ce8a72cad.zip | |
fix(frontend): prevent layout-shift of reactions viewer
Fix #11842
| -rw-r--r-- | packages/frontend/src/components/MkReactionsViewer.reaction.vue | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/packages/frontend/src/components/MkReactionsViewer.reaction.vue b/packages/frontend/src/components/MkReactionsViewer.reaction.vue index 7da5790122..4349b7999e 100644 --- a/packages/frontend/src/components/MkReactionsViewer.reaction.vue +++ b/packages/frontend/src/components/MkReactionsViewer.reaction.vue @@ -158,7 +158,7 @@ useTooltip(buttonEl, async (showing) => { &.reacted, &.reacted:hover { background: var(--accentedBg); color: var(--accent); - border: 1px solid var(--accent); + box-shadow: 0 0 0px 1px var(--accent) inset; > .count { color: var(--accent); |