Skip to content

Commit

Permalink
통계
Browse files Browse the repository at this point in the history
  • Loading branch information
hhhello0507 committed Jan 20, 2025
1 parent 5b2071d commit 6c836d5
Show file tree
Hide file tree
Showing 4 changed files with 256 additions and 113 deletions.
Original file line number Diff line number Diff line change
@@ -1,13 +1,43 @@
import styled from "styled-components";
import colors from "@designsystem/foundation/colors";
import makeText from "@designsystem/foundation/text/textType";

const BaseRow = styled.div`
display: flex;
padding: 0 8px;
height: 60px;
align-items: stretch;
`;

const BaseCell = styled.div`
display: flex;
align-items: center;
justify-content: center;
width: 146px;
${makeText('p4')};
`

const S = {
container: styled.div`
display: flex;
flex: 1;
overflow-y: scroll;
background: ${colors.white};
`
`,
rsvp: {
headerRow: styled(BaseRow)`
border-bottom: 1px solid ${colors.black};
`,
bodyRow: styled(BaseRow)`
border-bottom: 1px solid ${colors.g100};
`,
contentCell: styled(BaseCell)`
flex: 1;
`,
cell: styled(BaseCell)<{ width: number }>`
width: ${({width}) => width}px;
`,
},
};

export default S;
Loading

0 comments on commit 6c836d5

Please sign in to comment.