docs: improve tailwind configuration (#5215)

This commit is contained in:
Shahed Nasser
2023-09-26 15:08:30 +03:00
committed by GitHub
parent 240c439beb
commit 63aea62d7a
98 changed files with 643 additions and 894 deletions
@@ -14,17 +14,11 @@ export const ModalHeader = ({ title }: ModalHeaderProps) => {
return (
<div
className={clsx(
"border-medusa-border-base dark:border-medusa-border-base-dark border-0 border-b border-solid py-docs_1.5 px-docs_2",
"border-medusa-border-base border-0 border-b border-solid py-docs_1.5 px-docs_2",
"flex items-center justify-between"
)}
>
<span
className={clsx(
"text-medusa-fg-base dark:text-medusa-fg-base-dark text-h2"
)}
>
{title}
</span>
<span className={clsx("text-medusa-fg-base text-h2")}>{title}</span>
<Button
variant="clear"
className="cursor-pointer"