-
Notifications
You must be signed in to change notification settings - Fork 1
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
1 parent
5b2071d
commit 6c836d5
Showing
4 changed files
with
256 additions
and
113 deletions.
There are no files selected for viewing
32 changes: 31 additions & 1 deletion
32
src/page/invitation/statistics/detail/InvitationStatisticsDetail.style.ts
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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; |
Oops, something went wrong.