Tweak padding

This commit is contained in:
Austin Chen 2022-03-17 21:52:01 -07:00
parent 50ab6dc6de
commit 6d71640bcb
2 changed files with 2 additions and 2 deletions

View File

@ -85,7 +85,7 @@ export default function FeedCreate(props: {
return (
<div
className={clsx(
'mt-2 w-full cursor-text rounded bg-white p-4 shadow-md',
'w-full cursor-text rounded bg-white p-4 shadow-md',
isExpanded ? 'ring-2 ring-indigo-300' : '',
className
)}

View File

@ -16,7 +16,7 @@ export function Page(props: {
<div
className={clsx(
'mx-auto w-full py-10 pb-16 lg:grid lg:max-w-7xl lg:grid-cols-12 lg:gap-8',
'mx-auto w-full pb-16 lg:grid lg:max-w-7xl lg:grid-cols-12 lg:gap-8',
wide ? 'max-w-6xl' : 'max-w-4xl',
margin && 'px-4'
)}