Skip to content

Commit

Permalink
fix: ios bug
Browse files Browse the repository at this point in the history
  • Loading branch information
YuzeTT committed Nov 21, 2023
1 parent 161895a commit 9c34aaa
Show file tree
Hide file tree
Showing 2 changed files with 8 additions and 3 deletions.
5 changes: 5 additions & 0 deletions src/index.css
Original file line number Diff line number Diff line change
Expand Up @@ -83,3 +83,8 @@ a {
.shadow-card {
box-shadow: 0px 4px 7px 0px #00000008;
}

.blur-circle {
filter: blur(70px);
-webkit-filter: blur(70px);
}
6 changes: 3 additions & 3 deletions src/pages/index.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -43,9 +43,9 @@ export default function index() {

return (
<div className='max-w-xl mx-auto relative z-10'>
<div className='w-40 h-40 rounded-full bg-blue-100 absolute -top-10 -left-10 z-0 blur-[70px]'></div>
<div className='w-40 h-40 rounded-full bg-green-100 absolute top-10 -right-10 z-0 blur-[70px]'></div>
<div className='w-40 h-40 rounded-full bg-purple-100 absolute top-30 left-10 z-0 blur-[70px]'></div>
<div className='w-40 h-40 rounded-full bg-blue-100 absolute -top-10 -left-10 z-0 blur-circle'></div>
<div className='w-40 h-40 rounded-full bg-green-100 absolute top-10 -right-10 z-0 blur-circle'></div>
<div className='w-40 h-40 rounded-full bg-purple-100 absolute top-30 left-10 z-0 blur-circle'></div>
<div className='my-4 relative p-4'>
<img src='/images/big-sticker_logo_2.webp' alt='logo' className='w-12 h-12' />
<div className='text-3xl op90 mt-5'>{getMsg()}</div>
Expand Down

0 comments on commit 9c34aaa

Please sign in to comment.