Web: Files: DownloadDialog: fix layout

This commit is contained in:
Viktor Fomin 2022-04-27 15:22:38 +03:00
parent 5a513dcad6
commit cd8c5b0874

View File

@ -6,12 +6,20 @@ import RowContainer from "@appserver/components/row-container";
import Text from "@appserver/components/text";
import LinkWithDropdown from "@appserver/components/link-with-dropdown";
import styled from "styled-components";
import { tablet } from "@appserver/components/utils/device";
const StyledDownloadContent = styled.div`
.row_content,
.row-content_tablet-side-info {
overflow: unset;
}
@media (${tablet}) {
.row-content_tablet-side-info {
display: flex;
gap: 5px;
}
}
`;
const DownloadContent = (props) => {