diff --git a/CALCKEY.md b/CALCKEY.md index dde53a888..a51beaef7 100644 --- a/CALCKEY.md +++ b/CALCKEY.md @@ -46,7 +46,8 @@ - Spinner instead of "Loading..." - SearchX instead of Google - Spacing on group items -- Reply limit bug fixed (somewhat) +- Quotes have solid border +- Reply limit bug fixed - Custom assets - [OAuth bearer token authentication](https://github.com/misskey-dev/misskey/pull/9021) - [Styled Repair Tools](https://github.com/misskey-dev/misskey/pull/8956) diff --git a/packages/client/src/components/note.vue b/packages/client/src/components/note.vue index cab5c8258..5c0efc463 100644 --- a/packages/client/src/components/note.vue +++ b/packages/client/src/components/note.vue @@ -319,7 +319,7 @@ function readPromo() { margin: auto; width: calc(100% - 8px); height: calc(100% - 8px); - border: dashed 1px var(--focus); + border: solid 1px var(--focus); border-radius: var(--radius); box-sizing: border-box; } @@ -507,7 +507,7 @@ function readPromo() { > * { padding: 16px; - border: dashed 1px var(--renote); + border: solid 1px var(--renote); border-radius: 8px; } }