-
Notifications
You must be signed in to change notification settings - Fork 17
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
feat: transfer status filter, styling
- Loading branch information
1 parent
a69c0bf
commit 4417d3f
Showing
2 changed files
with
97 additions
and
3 deletions.
There are no files selected for viewing
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
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 |
---|---|---|
@@ -0,0 +1,34 @@ | ||
import styled from '@emotion/styled'; | ||
import { MenuItem, Select, Typography } from '@mui/material'; | ||
import { ArrowDropDown } from '@mui/icons-material'; | ||
|
||
export const FilterLabelText = styled(Typography)({ | ||
fontWeight: '700', | ||
fontSize: '16px', | ||
lineHeight: '24px', | ||
marginBottom: '3px', | ||
}); | ||
|
||
export const TransferSelectFilter = styled(Select)({ | ||
fontSize: '16px', | ||
borderRadius: '4px', | ||
border: '1px solid #E0E0E0', | ||
background: 'var(--neutral-white, #FFF)', | ||
height: '40px', | ||
fontWeight: '400', | ||
opacity: '0.8', | ||
padding: '8px', | ||
'& .MuiSelect-select:focus': { | ||
backgroundColor: 'transparent', | ||
color: 'inherit', | ||
}, | ||
}); | ||
|
||
export const SelectMenuItem = styled(MenuItem)({ | ||
fontSize: '16px', | ||
}); | ||
|
||
export const ArrowDropDownIcon = styled(ArrowDropDown)({ | ||
fontSize: '24px', | ||
}); | ||
|