Commit b25da9de authored by Vignesh Mohankumar's avatar Vignesh Mohankumar Committed by GitHub

fix: end -> flex-end (#5774)

parent ae1fb436
......@@ -51,14 +51,14 @@ const RoundedImage = styled.div<{ src?: string }>`
const ChangeCellContainer = styled.div<{ change: number }>`
display: flex;
color: ${({ theme, change }) => (change >= 0 ? theme.accentSuccess : theme.accentFailure)};
justify-content: end;
justify-content: flex-end;
align-items: center;
gap: 2px;
`
const EthContainer = styled.div`
display: flex;
justify-content: end;
justify-content: flex-end;
`
interface CellProps {
......
......@@ -61,7 +61,7 @@ const StyledHeader = styled.th<{ disabled?: boolean }>`
const StyledLoadingHolder = styled.div`
display: flex;
width: 100%;
justify-content: end;
justify-content: flex-end;
align-items: center;
`
......
......@@ -88,7 +88,7 @@ const ContentContainer = styled.div<{ isDarkMode: boolean }>`
display: flex;
flex-direction: column;
align-items: center;
justify-content: end;
justify-content: flex-end;
width: 100%;
padding: 0 0 40px;
max-width: min(720px, 90%);
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment