style: more padding x in segment

This commit is contained in:
원더 2021-01-30 12:19:51 +09:00
parent 861c3e6225
commit fe41cd5e6e

View File

@ -1,6 +1,6 @@
const Segment = ({ children }:SegmentProps): JSX.Element => { const Segment = ({ children }:SegmentProps): JSX.Element => {
return ( return (
<div className='p-5 text-black dark:text-white dark:bg-discord-black bg-little-white rounded-sm'> <div className='px-7 text-black dark:text-white dark:bg-discord-black bg-little-white rounded-sm'>
{children} {children}
</div> </div>
) )