Skip to content

Commit f90ec72

Browse files
committed
Clean css code
1 parent d3c7ecf commit f90ec72

3 files changed

Lines changed: 3 additions & 3 deletions

File tree

src/app/layout.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -142,7 +142,7 @@ export default function RootLayout({ children }) {
142142
return (
143143
<html lang="es">
144144
<body className={`${openSans.variable} min-h-screen flex flex-col text-py-text`}>
145-
<div className="fixed inset-0 -z-10 bg-py-dark gradient-bg" />
145+
<div className="fixed inset-0 -z-10 gradient-bg" />
146146
<Header />
147147
<main className="flex-grow">{children}</main>
148148
<Footer />

src/app/page.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -74,7 +74,7 @@ export default function Home() {
7474
</div>
7575
) : (
7676
<div className="backdrop-blur-sm rounded-lg p-6 md:p-8 max-w-2xl mx-auto mt-8 text-center">
77-
<div className="w-16 h-16 md:w-20 md:h-20 bg-purple-700 rounded-full flex items-center justify-center mx-auto mb-4">
77+
<div className="w-16 h-16 md:w-20 md:h-20 bg-py-green rounded-full flex items-center justify-center mx-auto mb-4">
7878
<svg
7979
xmlns="http://www.w3.org/2000/svg"
8080
className="h-8 w-8 md:h-10 md:w-10"

src/app/previous-editions/page.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -18,7 +18,7 @@ export default function PreviousEditionsPage() {
1818
<div className="space-y-24 mb-12">
1919
{pastEvents.map((event, index) => (
2020
<div key={index} className="event-card">
21-
<div className="relative bg-py-dark/30 backdrop-blur-sm rounded-xl overflow-hidden shadow-xl">
21+
<div className="relative backdrop-blur-sm rounded-xl overflow-hidden shadow-xl">
2222
{/* Se fuerza que ambos lados ocupen al menos 20rem y se centran verticalmente */}
2323
<div className="grid md:grid-cols-2 gap-6 items-center min-h-[20rem]">
2424
{/* Imagen del evento */}

0 commit comments

Comments
 (0)