diff options
author | fragosti <francesco.agosti93@gmail.com> | 2018-06-28 07:21:50 +0800 |
---|---|---|
committer | fragosti <francesco.agosti93@gmail.com> | 2018-06-28 07:21:50 +0800 |
commit | 26a9fe912703ef09ca9328ce19847406572386ac (patch) | |
tree | e5c6213723b4a6b7661719f0e3af3bdf097b51f2 /packages/website/ts/components/ui | |
parent | 47a267c3fa3498793568da79ebfc9b40c3d7129d (diff) | |
download | dexon-sol-tools-26a9fe912703ef09ca9328ce19847406572386ac.tar dexon-sol-tools-26a9fe912703ef09ca9328ce19847406572386ac.tar.gz dexon-sol-tools-26a9fe912703ef09ca9328ce19847406572386ac.tar.bz2 dexon-sol-tools-26a9fe912703ef09ca9328ce19847406572386ac.tar.lz dexon-sol-tools-26a9fe912703ef09ca9328ce19847406572386ac.tar.xz dexon-sol-tools-26a9fe912703ef09ca9328ce19847406572386ac.tar.zst dexon-sol-tools-26a9fe912703ef09ca9328ce19847406572386ac.zip |
Fix width issue with onboarding card on mobile
Diffstat (limited to 'packages/website/ts/components/ui')
-rw-r--r-- | packages/website/ts/components/ui/animation.tsx | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/packages/website/ts/components/ui/animation.tsx b/packages/website/ts/components/ui/animation.tsx index 136f3d005..b90437721 100644 --- a/packages/website/ts/components/ui/animation.tsx +++ b/packages/website/ts/components/ui/animation.tsx @@ -14,12 +14,14 @@ const appearFromBottomFrames = keyframes` position: fixed; bottom: -500px; left: 0px; + right: 0px; } to { position: fixed; bottom: 0px; left: 0px; + right: 0px; } `; |