Skip to content

Commit

Permalink
Merge pull request #1069 from AelinXYZ/fix-banner
Browse files Browse the repository at this point in the history
[Fix] Responsive Notice Banner
  • Loading branch information
alextheboredape authored Aug 13, 2023
2 parents 297e2f5 + 1b409d4 commit 7e2ce5c
Showing 1 changed file with 14 additions and 3 deletions.
17 changes: 14 additions & 3 deletions pages/index.tsx
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
import type { NextPage } from 'next'
import Head from 'next/head'
import Link from 'next/link'
import BaseLink from 'next/link'
import styled from 'styled-components'

import { LeftSidebarLayout } from '@/src/components/layout/LeftSidebarLayout'
Expand All @@ -17,15 +17,26 @@ const Container = styled.div`
flex-direction: row;
width: 100%;
gap: 1.5rem;
height: 350px;
height: 620px;
@media (min-width: ${({ theme }) => theme.themeBreakPoints.tabletPortraitStart}) {
height: 350px;
}
@media (min-width: ${({ theme }) => theme.themeBreakPoints.desktopStart}) {
height: 300px;
}
`

const SectionIntro = styled(BaseSectionIntro)`
display: flex;
flex-direction: column;
flex: 1 1 0px;
justify-content: space-between;
height: 300px;
`

const Link = styled(BaseLink)`
word-break: break-word;
`

const Home: NextPage = () => {
Expand Down

1 comment on commit 7e2ce5c

@vercel
Copy link

@vercel vercel bot commented on 7e2ce5c Aug 13, 2023

Choose a reason for hiding this comment

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

Successfully deployed to the following URLs:

aelin-ui-v2 – ./

aelin-ui-v2-git-main-aelin.vercel.app
aelin-ui-v2-aelin.vercel.app
app.aelin.xyz

Please sign in to comment.