From cffc95ca6a68ac7c4dd8a7e30e7de19baacce971 Mon Sep 17 00:00:00 2001 From: stakbucks Date: Thu, 31 Oct 2024 13:59:32 +0900 Subject: [PATCH] fix(ui): bottom margin for cta button --- .../fixed-bottom-cta-button/fixedBottomCTAButtonStyle.css.ts | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/packages/ui/src/components/fixed-bottom-cta-button/fixedBottomCTAButtonStyle.css.ts b/packages/ui/src/components/fixed-bottom-cta-button/fixedBottomCTAButtonStyle.css.ts index 8088d62..761d6dc 100644 --- a/packages/ui/src/components/fixed-bottom-cta-button/fixedBottomCTAButtonStyle.css.ts +++ b/packages/ui/src/components/fixed-bottom-cta-button/fixedBottomCTAButtonStyle.css.ts @@ -9,7 +9,7 @@ export const buttonContainer = style({ width: '100%', height: `${CTA_HEIGHT}px`, paddingTop: spacings.xl, - marginBottom: 'env(safe-area-inset-bottom)', + marginBottom: spacings.sm, display: 'flex', justifyContent: 'center', background: 'linear-gradient(180deg, rgba(251, 251, 251, 0) 0%, #FBFBFB 25%)',