mirror of
https://github.com/ente-io/ente.git
synced 2025-08-14 10:16:10 +00:00
Move into web/
This commit is contained in:
@@ -0,0 +1,19 @@
|
||||
import { CenteredFlex } from "@ente/shared/components/Container";
|
||||
import { Box, styled } from "@mui/material";
|
||||
export const Wrapper = styled(CenteredFlex)`
|
||||
position: relative;
|
||||
background: ${({ theme }) => theme.colors.accent.A700};
|
||||
border-radius: ${({ theme }) => theme.shape.borderRadius}px;
|
||||
min-height: 80px;
|
||||
`;
|
||||
export const CopyButtonWrapper = styled(Box)`
|
||||
position: absolute;
|
||||
top: 0px;
|
||||
right: 0px;
|
||||
margin-top: ${({ theme }) => theme.spacing(1)};
|
||||
`;
|
||||
|
||||
export const CodeWrapper = styled("div")`
|
||||
padding: 16px 36px 16px 16px;
|
||||
border-radius: ${({ theme }) => theme.shape.borderRadius}px;
|
||||
`;
|
Reference in New Issue
Block a user