Skip to content

Commit

Permalink
fix for real
Browse files Browse the repository at this point in the history
  • Loading branch information
MatthewStanciu committed Jan 23, 2024
1 parent e5dd473 commit 3b790dc
Show file tree
Hide file tree
Showing 3 changed files with 3 additions and 2 deletions.
2 changes: 1 addition & 1 deletion components/desc-box.tsx
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
const DescriptionBox = ({ ...props }) => (
<div className="container mx-auto p-8 px-4 md:px-16 lg:px-64 xl:px-96">
<div className="border-2 border-dashed rounded-lg p-4 border-amber-400 dark:border-amber-500 break-all">
<div className="border-2 border-dashed rounded-lg p-4 border-amber-400 dark:border-amber-500">
{props.children}
</div>
</div>
Expand Down
2 changes: 1 addition & 1 deletion components/past-event.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -84,7 +84,7 @@ const PastEvent = ({ event }: { event: PHEvent }) => {
} sm:gap-x-4 items-center`}
>
<StatsCard event={event} />
<div className="sm:max-w-lg md:max-w-xl break-all">
<div className="sm:max-w-lg md:max-w-xl">
<div className="flex flex-col justify-items-center sm:justify-items-end">
<div
className={`mx-4 mt-4 ${
Expand Down
1 change: 1 addition & 0 deletions styles/styles.css
Original file line number Diff line number Diff line change
Expand Up @@ -17,6 +17,7 @@
@layer components {
.desc {
@apply text-amber-500 hover:text-amber-400 transition;
word-break: break-word;
}
.text-shadow {
text-shadow: 0 0 6px #fbbf24;
Expand Down

1 comment on commit 3b790dc

@vercel
Copy link

@vercel vercel bot commented on 3b790dc Jan 23, 2024

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Please sign in to comment.