Skip to content

Commit f856340

Browse files
authoredJun 25, 2024
feat(client): improve RenderCode component style (#482)
1 parent d6a1faf commit f856340

File tree

2 files changed

+5
-2
lines changed

2 files changed

+5
-2
lines changed
 

‎packages/applet/src/components/basic/CodeBlock.vue

+3
Original file line numberDiff line numberDiff line change
@@ -61,4 +61,7 @@ const rendered = computed(() => {
6161
text-align: right;
6262
--at-apply: 'text-truegray:50';
6363
}
64+
.code-block pre:focus-visible {
65+
outline: none;
66+
}
6467
</style>

‎packages/applet/src/modules/components/components/RenderCode.vue

+2-2
Original file line numberDiff line numberDiff line change
@@ -14,11 +14,11 @@ function close() {
1414

1515
<template>
1616
<div class="absolute left-0 top-0 h-full w-full flex flex-col rounded-br-2.5 rounded-tr-2.5 bg-white p2 dark:bg-[#121212]">
17-
<div class="h-12 w-full flex items-center justify-between py-2">
17+
<div class="h-12 w-full flex items-center justify-between p-2">
1818
<span class="font-500">Render Code</span>
1919
<i class="i-carbon-close cursor-pointer hover:op80" @click="close" />
2020
</div>
21-
<div class="no-scrollbar flex-1 select-none overflow-scroll">
21+
<div class="flex-1 overflow-scroll text-3.5">
2222
<CodeBlock :code="code" lang="javascript" />
2323
</div>
2424
</div>

0 commit comments

Comments
 (0)