Web: Fix margin on Trash Empty screen

This commit is contained in:
Alexey Safronov 2023-09-28 13:16:11 +04:00
parent 3e204513a4
commit 3975f4c9af

View File

@ -182,7 +182,10 @@ const RootFolderContainer = (props) => {
return {
headerText: emptyScreenHeader,
descriptionText: trashDescription,
style: { gridColumnGap: "39px", gridTemplateColumns: "150px" },
style: {
gridColumnGap: "39px",
marginTop: 32,
},
imageSrc: theme.isBase
? EmptyScreenTrashSvgUrl
: EmptyScreenTrashSvgDarkUrl,
@ -395,12 +398,8 @@ export default inject(
selectedFolderStore,
clientLoadingStore,
}) => {
const {
isDesktopClient,
isEncryptionSupport,
organizationName,
theme,
} = auth.settingsStore;
const { isDesktopClient, isEncryptionSupport, organizationName, theme } =
auth.settingsStore;
const { setIsSectionFilterLoading } = clientLoadingStore;