Skip to content
This repository has been archived by the owner on Dec 19, 2024. It is now read-only.

Commit

Permalink
style: remove redundant style
Browse files Browse the repository at this point in the history
  • Loading branch information
hetd54 committed May 29, 2024
1 parent 763e8a7 commit 9833e09
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion src/components/Card.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,7 @@ const Card: React.FC<CardProps> = ({ position, image, title, name, address, phon
<div
className={
position % 2
? "flex flex-row items-center flex-row-reverse text-right"
? "flex items-center flex-row-reverse text-right"
: "flex flex-row items-center"
}
>
Expand Down
2 changes: 1 addition & 1 deletion src/components/CardContainer.astro
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,7 @@ interface PersonProps {

<div class="flex flex-row items-start space-x-12">
<h2 class={`${color} [writing-mode:vertical-lr] rotate-180`}>{title}</h2>
<div class="flex flex-col space-y-24">
<div class="flex flex-col space-y-20">
{
people.map((person: PersonProps, i: number) => {
return (
Expand Down

0 comments on commit 9833e09

Please sign in to comment.