fix: some small style things

This commit is contained in:
2023-08-02 13:25:19 +02:00
parent c7bcc0415a
commit 2d56710223
4 changed files with 24 additions and 6 deletions

View File

@ -6,7 +6,7 @@ export function Button(props: JSX.HTMLAttributes<HTMLButtonElement>) {
<button
{...props}
disabled={!IS_BROWSER || props.disabled}
class="px-2 py-1 border-gray-500 border-2 "
class={`px-2 py-1 ${props.class ? props.class : " "}`}
/>
);
}

View File

@ -8,3 +8,5 @@ export { default as IconError404 } from "https://deno.land/x/tabler_icons_tsx@0.
export { default as IconSquareRoundedPlus } from "https://deno.land/x/tabler_icons_tsx@0.0.3/tsx/square-rounded-plus.tsx";
export { default as IconReportSearch } from "https://deno.land/x/tabler_icons_tsx@0.0.3/tsx/report-search.tsx";
export { default as IconRefresh } from "https://deno.land/x/tabler_icons_tsx@0.0.3/tsx/refresh.tsx";
export { default as IconCirclePlus } from "https://deno.land/x/tabler_icons_tsx@0.0.3/tsx/circle-plus.tsx";
export { default as IconCircleMinus } from "https://deno.land/x/tabler_icons_tsx@0.0.3/tsx/circle-minus.tsx";