Web:Common:Fix margin for SectionFooter.

This commit is contained in:
Vlada Gazizova 2023-03-15 12:05:55 +03:00
parent 6f0f0ef2a5
commit 01693db8ba

View File

@ -1,8 +1,14 @@
import React from "react";
import styled from "styled-components";
import { smallTablet } from "@docspace/components/utils/device";
import { isMobileOnly } from "react-device-detect";
const StyledSectionFooter = styled.div`
margin-top: 40px;
@media ${smallTablet}, ${isMobileOnly} {
margin-top: 32px;
}
`;
const SectionFooter = ({ children }) => {