feat(deposit): responsive chain parity
This commit is contained in:
parent
2bacb22cdb
commit
f9e35c5c88
|
@ -1,12 +1,14 @@
|
||||||
import { Text } from '@status-im/components'
|
import { Text } from '@status-im/components'
|
||||||
|
|
||||||
|
import styles from './deposit.module.css'
|
||||||
|
|
||||||
const ChainParity = () => {
|
const ChainParity = () => {
|
||||||
return (
|
return (
|
||||||
<>
|
<>
|
||||||
<Text size={15} weight="regular" color={'#647084'}>
|
<Text size={15} weight="regular" color={'#647084'}>
|
||||||
Awaiting chain parity
|
Awaiting chain parity
|
||||||
</Text>
|
</Text>
|
||||||
<div style={{ padding: '7.5% 20%' }}>
|
<div className={styles['chain-parity-img-container']}>
|
||||||
<img
|
<img
|
||||||
src="/images/chain-parity.png"
|
src="/images/chain-parity.png"
|
||||||
alt="Chain parity"
|
alt="Chain parity"
|
||||||
|
|
|
@ -0,0 +1,15 @@
|
||||||
|
.chain-parity-img-container {
|
||||||
|
padding: 7.5% 20%;
|
||||||
|
}
|
||||||
|
|
||||||
|
@media (max-width: 880px) {
|
||||||
|
.chain-parity-img-container {
|
||||||
|
padding: 7.5% 10%;
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
@media (max-width: 570px) {
|
||||||
|
.chain-parity-img-container {
|
||||||
|
padding: 7.5% 5%;
|
||||||
|
}
|
||||||
|
}
|
Loading…
Reference in New Issue