Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Revert "fix: small screen overflowing issue" #2028

Merged
merged 1 commit into from
Jun 14, 2024
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
10 changes: 5 additions & 5 deletions src/components/Home/Intro.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -33,13 +33,13 @@ function TableRow({ href, title, subtitle, date }: TableRowProps) {
target="_blank"
rel="noopener noreferrer"
href={href}
className="flex items-center space-x-3 group lg:text-base text-xs"
className="flex items-center space-x-4 group"
>
<strong className="w-fit-content lg:flex-none flex-grow font-medium text-gray-1000 group-hover:text-blue-600 group-hover:underline dark:text-gray-100 dark:group-hover:text-blue-500">
<strong className="flex-none font-medium text-gray-1000 group-hover:text-blue-600 group-hover:underline dark:text-gray-100 dark:group-hover:text-blue-500">
{title}
</strong>
<span className="w-full border-t border-gray-300 border-dashed shrink dark:border-gray-800"/>
{subtitle && <span className="lg:flex-none flex-1 text-tertiary">{subtitle}</span>}
<span className="w-full border-t border-gray-300 border-dashed shrink dark:border-gray-800" />
{subtitle && <span className="flex-none text-tertiary">{subtitle}</span>}
{date && (
<span className="flex-none font-mono text-quaternary">{date}</span>
)}
Expand All @@ -50,7 +50,7 @@ function TableRow({ href, title, subtitle, date }: TableRowProps) {
function SectionContainer(props) {
return (
<div
className="grid items-start grid-cols-1 gap-6 md:grid-cols-12 w-full"
className="grid items-start grid-cols-1 gap-6 md:grid-cols-12"
{...props}
/>
)
Expand Down
Loading