From 55f7a9361ba02fa3c90760303f3bcd8b10f4742a Mon Sep 17 00:00:00 2001 From: Sebastian Scatularo Date: Wed, 25 Oct 2023 17:28:16 -0300 Subject: [PATCH] setup padding to 16px for the banner --- public/cosmos/index.css | 2 ++ public/sui/index.css | 2 ++ public/usdc-bridge/index.css | 2 ++ src/components/NewsBar/Bar.tsx | 2 ++ 4 files changed, 8 insertions(+) diff --git a/public/cosmos/index.css b/public/cosmos/index.css index 783d95844..6323de42f 100644 --- a/public/cosmos/index.css +++ b/public/cosmos/index.css @@ -301,6 +301,8 @@ body { height: auto; padding: 8px; flex-direction: column; + padding-top: 16px; + padding-bottom: 16px; } .wormholescan-banner p { margin: 0px; diff --git a/public/sui/index.css b/public/sui/index.css index 783d95844..6323de42f 100644 --- a/public/sui/index.css +++ b/public/sui/index.css @@ -301,6 +301,8 @@ body { height: auto; padding: 8px; flex-direction: column; + padding-top: 16px; + padding-bottom: 16px; } .wormholescan-banner p { margin: 0px; diff --git a/public/usdc-bridge/index.css b/public/usdc-bridge/index.css index 233c199bd..e8f2e580c 100644 --- a/public/usdc-bridge/index.css +++ b/public/usdc-bridge/index.css @@ -396,6 +396,8 @@ body { height: auto; padding: 8px; flex-direction: column; + padding-top: 16px; + padding-bottom: 16px; } .wormholescan-banner p { margin: 0px; diff --git a/src/components/NewsBar/Bar.tsx b/src/components/NewsBar/Bar.tsx index 1db5d4c4d..41c91ef47 100644 --- a/src/components/NewsBar/Bar.tsx +++ b/src/components/NewsBar/Bar.tsx @@ -12,6 +12,8 @@ const useStyles = makeStyles>((theme) => ({ height: "auto", flexDirection: "column", padding: theme.spacing(1), + paddingTop: theme.spacing(2), + paddingBottom: theme.spacing(2), }, textAlign: "center", fontWeight: 500,