1
0
Fork 0
mirror of synced 2024-07-29 01:56:15 +12:00

Fix font size of code block in helper popovers

This commit is contained in:
Andrew Kingston 2024-02-29 17:04:01 +00:00
parent 5010c4fe4e
commit e53676791a

View file

@ -123,7 +123,6 @@
maxHeight={480} maxHeight={480}
dismissible={false} dismissible={false}
on:mouseenter={stopHidingPopover} on:mouseenter={stopHidingPopover}
on:mouseleave={hidePopover}
> >
<div class="binding-popover" class:helper={hoverTarget.helper}> <div class="binding-popover" class:helper={hoverTarget.helper}>
{#if hoverTarget.description} {#if hoverTarget.description}
@ -414,4 +413,7 @@
padding: 0; padding: 0;
margin: 0; margin: 0;
} }
.binding-popover.helper :global(code) {
font-size: 12px;
}
</style> </style>