@chayns-components/gallery
Version:
A set of beautiful React components for developing your own applications with chayns.
44 lines (43 loc) • 947 B
JavaScript
import styled from 'styled-components';
export const StyledGalleryItem = styled.div`
display: flex;
position: relative;
height: 100%;
width: 100%;
`;
export const StyledGalleryItemDeleteButton = styled.button`
background-color: rgba(
${({
theme
}) => theme['000-rgb']},
0.75
);
box-shadow: 0 0 0 1px
rgba(${({
theme
}) => theme['009-rgb']}, 0.08) inset;
position: absolute;
top: 0;
right: 0;
z-index: 2;
height: 30px;
width: 30px;
display: flex;
justify-content: center;
align-items: center;
`;
export const StyledGalleryItemMoreItemsIndicator = styled.div`
position: absolute;
z-index: 2;
height: 100%;
width: 100%;
display: flex;
justify-content: center;
align-items: center;
backdrop-filter: brightness(40%);
p {
font-size: 40px;
color: white;
}
`;
//# sourceMappingURL=GalleryItem.styles.js.map