DocSpace-buildtools/packages/asc-web-common/components/Loaders/TileLoader/StyledTileLoader.js
2021-12-23 12:32:46 +03:00

57 lines
1.1 KiB
JavaScript

import styled from "styled-components";
const StyledTile = styled.div`
position: relative;
display: grid;
width: 100%;
height: ${(props) => (props.isFolder ? "32px" : "220px")};
border-radius: 3px;
`;
const StyledMainContent = styled.div`
height: 172px;
`;
const StyledBottom = styled.div`
display: flex;
align-items: ${(props) => (props.isFolder ? "center" : "stretch")};
margin-top: ${(props) => (props.isFolder ? 0 : "10px")};
height: 38px;
.first-content {
height: 32px;
width: 32px;
min-width: 32px;
}
.second-content {
width: 100%;
height: ${(props) => (props.isFolder ? "32px" : "16px")};
margin-left: 8px;
}
.files-second-content {
display: flex;
flex-direction: column;
justify-content: space-between;
align-items: flex-end;
width: 100%;
margin-left: 8px;
.second-content {
&:last-of-type {
height: 12px;
}
}
}
.option-button {
height: 16px;
width: 16px;
min-width: 16px;
margin-left: 8px;
}
`;
export { StyledTile, StyledBottom, StyledMainContent };