summaryrefslogtreecommitdiff
path: root/src/components
diff options
context:
space:
mode:
Diffstat (limited to 'src/components')
-rw-r--r--src/components/Paper.tsx2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/components/Paper.tsx b/src/components/Paper.tsx
index f285dab..8094293 100644
--- a/src/components/Paper.tsx
+++ b/src/components/Paper.tsx
@@ -12,7 +12,7 @@ const style = {
const Paper: React.FC<Props> = ({ variant = 'elevation', className, children }) => {
return (
- <div className={`p-5 bg-white rounded-md shadow ${style[variant]} ${className}`}>
+ <div className={`p-4 lg:p-5 bg-white rounded-md shadow ${style[variant]} ${className}`}>
{children}
</div>
);