Skip to content

Commit

Permalink
fixed spacing on button for back to about me on mobile
Browse files Browse the repository at this point in the history
  • Loading branch information
parchinski committed Oct 29, 2024
1 parent a73c913 commit 4e8e163
Show file tree
Hide file tree
Showing 5 changed files with 6 additions and 6 deletions.
2 changes: 1 addition & 1 deletion app/routes/ccdc.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@ export default function CollegiateCyberDefenseCompetition() {
return (
<main className="min-h-screen p-8 bg-background text-foreground pt-28">
<div className="max-w-6xl mx-auto">
<div className="flex flex-col items-center justify-center mb-16 mt-8 px-12">
<div className="flex flex-col items-center justify-center mb-16 mt-8">
<h1 className="text-5xl font-bold">
Collegiate Cyber Defense Competition
</h1>
Expand Down
4 changes: 2 additions & 2 deletions app/routes/competitions.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -45,11 +45,11 @@ export default function Competitions() {
return (
<main className="min-h-screen p-8 bg-background text-foreground pt-28">
<div className="max-w-6xl mx-auto">
<div className="flex flex-col items-center justify-center mb-16 mt-8 px-12">
<div className="flex flex-col items-center justify-center mb-16 mt-8">
<h1 className="text-5xl font-bold">Competitions</h1>
<Link
to="/about-us"
className="text-center border-2 bg-background hover:bg-brandGold text-lg hover:text-background border-brandGold text-brandGold rounded-full w-screen max-w-6xl mt-16 py-1"
className="text-center border-2 bg-background hover:bg-brandGold text-lg hover:text-background border-brandGold text-brandGold rounded-full w-full mt-16 py-1"
>
Back to About Us
</Link>
Expand Down
2 changes: 1 addition & 1 deletion app/routes/constitution.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,7 @@ export default function Constitution() {
return (
<main className="min-h-screen p-8 bg-background text-foreground pt-28">
<div className="max-w-6xl mx-auto">
<div className="flex flex-col items-center justify-center mb-16 mt-8 px-12">
<div className="flex flex-col items-center justify-center mb-16 mt-8">
<h1 className="text-5xl font-bold">
Constitution of Collegiate Cyber Defense Club
</h1>
Expand Down
2 changes: 1 addition & 1 deletion app/routes/ctf.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@ export default function CaptureTheFlag() {
return (
<main className="min-h-screen p-8 bg-background text-foreground pt-28">
<div className="max-w-6xl mx-auto">
<div className="flex flex-col items-center justify-center mb-16 mt-8 px-12">
<div className="flex flex-col items-center justify-center mb-16 mt-8">
<h1 className="text-5xl font-bold">Capture the Flag</h1>
<Link
to="/about-us"
Expand Down
2 changes: 1 addition & 1 deletion app/routes/faq.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,7 @@ export default function FAQ() {
return (
<main className="min-h-screen p-8 bg-background text-foreground pt-28">
<div className="max-w-6xl mx-auto">
<div className="flex flex-col items-center justify-center mb-16 mt-8 px-12">
<div className="flex flex-col items-center justify-center mb-16 mt-8">
<h1 className="text-5xl font-bold">Frequently Asked Questions</h1>
<Link
to="/about-us"
Expand Down

0 comments on commit 4e8e163

Please sign in to comment.