fix: un-hardcode more border radius values

all of these are blind find and replace, no clue if they end up breaking
anything
This commit is contained in:
ShittyKopper 2023-12-23 15:20:51 +03:00
parent 62a5793e71
commit 32318bbbfa
10 changed files with 14 additions and 14 deletions

View file

@ -56,7 +56,7 @@ const XCode = defineAsyncComponent(() => import('@/components/MkCode.core.vue'))
padding: 1em;
margin: .5em 0;
overflow: auto;
border-radius: 8px;
border-radius: var(--radius-sm);
}
.codeBlockFallbackCode {
@ -74,7 +74,7 @@ const XCode = defineAsyncComponent(() => import('@/components/MkCode.core.vue'))
cursor: pointer;
box-sizing: border-box;
border-radius: 8px;
border-radius: var(--radius-sm);
padding: 24px;
margin-top: 4px;
color: #D4D4D4;