atproto explorer pdsls.dev
atproto tool

fix font size validate button

juli.ee 282a131f 1bf35001

verified
Changed files
+2 -2
src
components
+2 -2
src/components/create.tsx
···
<div class="flex items-center justify-end gap-2">
<button
type="button"
-
class="flex items-center gap-1 rounded-sm p-1.5 text-sm hover:bg-neutral-200 active:bg-neutral-300 dark:hover:bg-neutral-700 dark:active:bg-neutral-600"
onClick={() =>
setValidate(
validate() === true ? false
···
<Tooltip text={getValidateLabel()}>
<span class={`iconify ${getValidateIcon()}`}></span>
</Tooltip>
-
<span class="text-xs">Validate</span>
</button>
<Show when={!props.create}>
<Button onClick={() => editRecord(true)}>Recreate</Button>
···
<div class="flex items-center justify-end gap-2">
<button
type="button"
+
class="flex items-center gap-1 rounded-sm p-1.5 text-xs hover:bg-neutral-200 active:bg-neutral-300 dark:hover:bg-neutral-700 dark:active:bg-neutral-600"
onClick={() =>
setValidate(
validate() === true ? false
···
<Tooltip text={getValidateLabel()}>
<span class={`iconify ${getValidateIcon()}`}></span>
</Tooltip>
+
<span>Validate</span>
</button>
<Show when={!props.create}>
<Button onClick={() => editRecord(true)}>Recreate</Button>