diff --git a/package.json b/package.json index 6bb7c10..6255b21 100644 --- a/package.json +++ b/package.json @@ -1,6 +1,6 @@ { "name": "@poap-xyz/poap-family", - "version": "1.5.1", + "version": "1.5.2", "author": { "name": "POAP", "url": "https://poap.xyz" diff --git a/src/styles/center-page.css b/src/styles/center-page.css index 4d34f7d..d3318be 100644 --- a/src/styles/center-page.css +++ b/src/styles/center-page.css @@ -2,8 +2,16 @@ width: 100%; max-width: 100%; min-height: 100vh; + overflow: scroll; display: flex; + flex-direction: column; align-items: center; justify-content: center; - flex-direction: column; +} + +@media only screen and (max-width: 500px) { + .center-page { + align-items: start; + justify-content: start; + } }