Skip to content

Commit

Permalink
fix: balance table on firefox
Browse files Browse the repository at this point in the history
  • Loading branch information
TheLeoB committed Nov 14, 2018
1 parent 7c134ee commit b873e94
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -24,7 +24,7 @@ export const HomeBalanceRow = styled.div`
&:not(:last-child) {
border-bottom: 1px solid ${props => props.theme['gray-1']};
}
@media (min-width: 768px) {
@media (max-width: 480px) {
padding: 15px 30px;
}
`
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,7 @@ const Wrapper = styled.div`
flex-direction: column;
box-sizing: border-box;
border: 1px solid ${props => props.theme['gray-1']};
@media (min-width: 480px) {
@media (max-width: 480px) {
height: 380px;
}
`
Expand Down

0 comments on commit b873e94

Please sign in to comment.