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

Improve landing and venue pages #524

Open
wants to merge 1 commit into
base: master
Choose a base branch
from
Open
Show file tree
Hide file tree
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
6 changes: 3 additions & 3 deletions components/Header/header.js
Original file line number Diff line number Diff line change
Expand Up @@ -13,9 +13,9 @@ function Header() {
const isMobile = useMediaQuery({ maxWidth: '590px' });
return (
<div className='relative'>
<div className='container w-full flex items-center justify-center'>
<div className=''>
<div className='flex justify-center w-full mt-32'>
<div className='container w-full flex items-center justify-center h-screen'>
<div className='items-center'>
<div className='flex justify-center w-full'>
<div className='flex flex-col justify-center items-center w-full'>
<div className='my-10'><Announcement /></div>
<div className='sm:w-full text-center' data-test="landing-heading">
Expand Down
4 changes: 2 additions & 2 deletions pages/venue/[id].js
Original file line number Diff line number Diff line change
Expand Up @@ -41,9 +41,9 @@ function Venue({ city }) {

return (
<div data-test={`venue-${city.name}`}>
<div className= {`w-full h-[500px] sm:h-[auto] ${city.name=='Online'?'bg-online':'bg-madrid'} bg-cover bg-center`}>
<div className= {`w-full h-screen sm:h-[auto] ${city.name=='Online'?'bg-online':'bg-madrid'} bg-cover bg-center`}>
<div className='w-full h-full kinda-dark items-center flex flex-col justify-between'>
<div className='mt-[68px] container text-center flex flex-col items-center w-[1100px] lg:w-full sm:text-center'>
<div className='mt-40 container text-center flex flex-col items-center w-[1100px] lg:w-full sm:text-center'>
{city.name == 'Online' ? <Heading className={textColor}>
{city.name} {city.country}
</Heading> :
Expand Down
Loading