Skip to content

Commit

Permalink
fix(docs): vertical text aligns
Browse files Browse the repository at this point in the history
  • Loading branch information
alicanerdurmaz committed Nov 7, 2023
1 parent 19faacd commit cbc6604
Show file tree
Hide file tree
Showing 4 changed files with 6 additions and 4 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -147,7 +147,7 @@ export const LandingAlreadyInvented: FC<Props> = ({ className }) => {
className={clsx(
"not-prose",
"mt-4 landing-sm:mt-6 landing-lg:mt-10",
"px-4 landing-md:px-10",
"px-4 landing-sm:px-6",
)}
>
<h6
Expand Down
4 changes: 3 additions & 1 deletion documentation/src/refine-theme/landing-community.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -124,7 +124,7 @@ export const LandingCommunity: FC<Props> = ({ className }) => {
"w-full landing-lg:w-[486px]",
"not-prose",
"flex-shrink-0",
"p-4",
"p-4 ",
"rounded-3xl",
"dark:bg-landing-noise",
"dark:bg-gray-800 bg-gray-50",
Expand All @@ -141,6 +141,8 @@ export const LandingCommunity: FC<Props> = ({ className }) => {
<div
className={clsx(
"mt-6",
"landing-lg:w-[300px]",
"px-0 landing-sm:px-6",
"text-base",
"not-prose",
"dark:text-gray-400 text-gray-600",
Expand Down
2 changes: 1 addition & 1 deletion documentation/src/refine-theme/landing-packages.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -145,7 +145,7 @@ export const LandingPackages: FC<Props> = ({ className }) => {
className={clsx(
"not-prose",
"mt-4 landing-sm:mt-6 landing-lg:mt-10",
"px-4 landing-md:px-10",
"px-4 landing-sm:px-10",
)}
>
<h6
Expand Down
2 changes: 1 addition & 1 deletion documentation/src/refine-theme/landing-pure-react-code.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -34,7 +34,7 @@ export const LandingPureReactCode: FC<Props> = ({ className }) => {
className={clsx(
"not-prose",
"mt-4 landing-sm:mt-6 landing-lg:mt-10",
"px-4 landing-md:px-10",
"px-4 landing-sm:px-6",
)}
>
<h6
Expand Down

0 comments on commit cbc6604

Please sign in to comment.