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 }>` ...@@ -51,14 +51,14 @@ const RoundedImage = styled.div<{ src?: string }>`
const ChangeCellContainer = styled.div<{ change: number }>` const ChangeCellContainer = styled.div<{ change: number }>`
display: flex; display: flex;
color: ${({ theme, change }) => (change >= 0 ? theme.accentSuccess : theme.accentFailure)}; color: ${({ theme, change }) => (change >= 0 ? theme.accentSuccess : theme.accentFailure)};
justify-content: end; justify-content: flex-end;
align-items: center; align-items: center;
gap: 2px; gap: 2px;
` `
const EthContainer = styled.div` const EthContainer = styled.div`
display: flex; display: flex;
justify-content: end; justify-content: flex-end;
` `
interface CellProps { interface CellProps {
......
...@@ -61,7 +61,7 @@ const StyledHeader = styled.th<{ disabled?: boolean }>` ...@@ -61,7 +61,7 @@ const StyledHeader = styled.th<{ disabled?: boolean }>`
const StyledLoadingHolder = styled.div` const StyledLoadingHolder = styled.div`
display: flex; display: flex;
width: 100%; width: 100%;
justify-content: end; justify-content: flex-end;
align-items: center; align-items: center;
` `
......
...@@ -88,7 +88,7 @@ const ContentContainer = styled.div<{ isDarkMode: boolean }>` ...@@ -88,7 +88,7 @@ const ContentContainer = styled.div<{ isDarkMode: boolean }>`
display: flex; display: flex;
flex-direction: column; flex-direction: column;
align-items: center; align-items: center;
justify-content: end; justify-content: flex-end;
width: 100%; width: 100%;
padding: 0 0 40px; padding: 0 0 40px;
max-width: min(720px, 90%); 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