DocSpace-client/packages/shared/components/report-dialog/ReportDialog.styled.ts
2024-02-09 14:07:14 +05:00

37 lines
603 B
TypeScript

import styled from "styled-components";
import { ModalDialog } from "@docspace/shared/components/modal-dialog";
export const ModalDialogContainer = styled(ModalDialog)`
#modal-dialog {
width: auto;
max-width: 520px;
max-height: 560px;
}
.report-description {
margin-bottom: 16px;
}
.report-wrapper {
margin-top: 8px;
height: 48px;
display: flex;
gap: 16px;
align-items: center;
.report-filename {
display: flex;
}
.file-icon {
width: 24px;
user-select: none;
}
.icon-button {
cursor: pointer;
}
}
`;