diff options
| author | Insert5StarName <anime@shourai.de> | 2023-10-01 01:20:20 +0200 |
|---|---|---|
| committer | Insert5StarName <anime@shourai.de> | 2023-10-01 01:20:20 +0200 |
| commit | 7a51e2d404d82a8fa491ad08bc88112a7173dff7 (patch) | |
| tree | 1eaa8f62f52020e663145f41f79b706dcd90c943 /packages/frontend/src/components/MkNoteSub.vue | |
| parent | fix: more sane defaults (diff) | |
| download | sharkey-7a51e2d404d82a8fa491ad08bc88112a7173dff7.tar.gz sharkey-7a51e2d404d82a8fa491ad08bc88112a7173dff7.tar.bz2 sharkey-7a51e2d404d82a8fa491ad08bc88112a7173dff7.zip | |
prototype: decreased rounding
Diffstat (limited to 'packages/frontend/src/components/MkNoteSub.vue')
| -rw-r--r-- | packages/frontend/src/components/MkNoteSub.vue | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/packages/frontend/src/components/MkNoteSub.vue b/packages/frontend/src/components/MkNoteSub.vue index 73f41e5778..6e30ac484f 100644 --- a/packages/frontend/src/components/MkNoteSub.vue +++ b/packages/frontend/src/components/MkNoteSub.vue @@ -278,7 +278,7 @@ if (props.detail) { left: 8px; width: 5px; height: calc(100% - 8px); - border-radius: 999px; + border-radius: 4px; pointer-events: none; } @@ -288,7 +288,7 @@ if (props.detail) { margin: 0 8px 0 0; width: 38px; height: 38px; - border-radius: 8px; + border-radius: 5px; } .body { @@ -362,6 +362,6 @@ if (props.detail) { padding: 8px !important; border: 1px solid var(--divider); margin: 8px 8px 0 8px; - border-radius: 8px; + border-radius: 5px; } </style> |