Layout: add breathing room to bottom of UI, fixes #880

This commit is contained in:
Alex Gleason 2022-04-23 12:19:51 -05:00
parent 7b6a56c005
commit 8becc4de2a
No known key found for this signature in database
GPG key ID: 7211D1F99744FBB7

View file

@ -3,7 +3,7 @@ import React from 'react';
import StickyBox from 'react-sticky-box';
const Layout: React.FC = ({ children }) => (
<div className='sm:py-4 relative pb-36'>
<div className='sm:pt-4 relative pb-36'>
<div className='max-w-3xl mx-auto sm:px-6 md:max-w-7xl md:px-8 md:grid md:grid-cols-12 md:gap-8'>
{children}
</div>