mirror of
https://github.com/DustinBrett/daedalOS.git
synced 2025-12-06 00:20:05 +01:00
29 lines
897 B
TypeScript
29 lines
897 B
TypeScript
import styled from "styled-components";
|
|
import StyledLoading from "components/system/Apps/StyledLoading";
|
|
import StyledDetailsFileManager from "components/system/Files/Views/Details/StyledFileManager";
|
|
import StyledIconFileManager from "components/system/Files/Views/Icon/StyledFileManager";
|
|
|
|
const StyledFileExplorer = styled.div`
|
|
${StyledDetailsFileManager}, ${StyledIconFileManager} {
|
|
height: ${({ theme }) =>
|
|
`calc(100% - ${theme.sizes.fileExplorer.navBarHeight} - ${theme.sizes.fileExplorer.statusBarHeight})`};
|
|
}
|
|
|
|
${StyledIconFileManager} {
|
|
column-gap: 2px;
|
|
padding: 6px 6px 6px 14px;
|
|
|
|
figcaption {
|
|
padding: 1px 0 2px;
|
|
}
|
|
}
|
|
|
|
${StyledLoading} {
|
|
height: ${({ theme }) =>
|
|
`calc(100% - ${theme.sizes.fileExplorer.navBarHeight} - ${theme.sizes.fileExplorer.statusBarHeight})`};
|
|
position: absolute;
|
|
}
|
|
`;
|
|
|
|
export default StyledFileExplorer;
|