diff --git a/web/components/ui/Content/Content.module.scss b/web/components/ui/Content/Content.module.scss index 966b45d6c..429dcbd9d 100644 --- a/web/components/ui/Content/Content.module.scss +++ b/web/components/ui/Content/Content.module.scss @@ -130,7 +130,6 @@ .bottomPageContentContainer { background-color: var(--theme-color-components-content-background); padding: calc(2 * var(--content-padding)); - padding-top: 0px; border-radius: var(--theme-rounded-corners); width: 100%; } diff --git a/web/components/ui/CustomPageContent/CustomPageContent.module.scss b/web/components/ui/CustomPageContent/CustomPageContent.module.scss index c4e5f46bd..3ac8582cb 100644 --- a/web/components/ui/CustomPageContent/CustomPageContent.module.scss +++ b/web/components/ui/CustomPageContent/CustomPageContent.module.scss @@ -1,9 +1,5 @@ @import 'styles/mixins.scss'; -.pageContentContainer { - @include flexCenter; -} - .customPageContent { font-size: 1rem; line-height: 1.6em; diff --git a/web/components/ui/CustomPageContent/CustomPageContent.tsx b/web/components/ui/CustomPageContent/CustomPageContent.tsx index 676915d18..93fc89349 100644 --- a/web/components/ui/CustomPageContent/CustomPageContent.tsx +++ b/web/components/ui/CustomPageContent/CustomPageContent.tsx @@ -7,7 +7,7 @@ export type CustomPageContentProps = { }; export const CustomPageContent: FC = ({ content }) => ( -
+
);