mirror of
https://github.com/Nezumi-2711/react-training.git
synced 2026-09-22 20:01:59 +00:00
23 lines
407 B
TypeScript
23 lines
407 B
TypeScript
import styled from 'styled-components';
|
|
|
|
const StyledUser = styled.main`
|
|
padding: 20px;
|
|
padding-bottom: 100px;
|
|
|
|
display: flex;
|
|
flex-direction: column;
|
|
gap: 30px;
|
|
`;
|
|
|
|
const Title = styled.h2`
|
|
font-size: var(--fs-md);
|
|
color: var(--dark-text);
|
|
text-transform: capitalize;
|
|
`;
|
|
|
|
const StyledOperationTable = styled.div`
|
|
text-align: right;
|
|
`;
|
|
|
|
export { StyledUser, Title, StyledOperationTable };
|