Skip to content

Commit

Permalink
adjusts codeExample log heights to match new editor font-size
Browse files Browse the repository at this point in the history
  • Loading branch information
andrew-boyd committed Feb 13, 2024
1 parent 1f98b80 commit 729ea68
Showing 1 changed file with 1 addition and 2 deletions.
3 changes: 1 addition & 2 deletions docs/components/CodeExample.client.vue
Original file line number Diff line number Diff line change
Expand Up @@ -149,7 +149,6 @@ const stopWatch = watch(el, () => {
font-mono
text-xs
md:text-sm
lg:text-base
p-4
overflow-auto
rounded-bl-lg
Expand All @@ -167,7 +166,7 @@ const stopWatch = watch(el, () => {
<ul v-if="result">
<li
v-for="logs in result"
class="text-nowrap h-6 text-slate-800 text-sm empty:hidden md:empty:block dark:text-purple-300"
class="text-nowrap h-[21px] text-slate-800 text-sm empty:hidden md:empty:block dark:text-purple-300"
>
{{ logs ? logs.join(", ") : "" }}
</li>
Expand Down

0 comments on commit 729ea68

Please sign in to comment.