feat: add media queries for responsive recovery phrase inputs
This commit is contained in:
parent
97c0b76acd
commit
1d255f76cd
|
@ -69,4 +69,31 @@
|
|||
.recovery-phrase {
|
||||
grid-template-columns: repeat(1, 1fr);
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
@media (max-width: 900px) {
|
||||
.confirm-recovery-phrase {
|
||||
width: 100%;
|
||||
}
|
||||
}
|
||||
|
||||
@media (max-width: 750px) {
|
||||
.confirm-recovery-phrase {
|
||||
grid-template-columns: repeat(3, 1fr);
|
||||
width: 100%;
|
||||
}
|
||||
}
|
||||
|
||||
@media (max-width: 550px) {
|
||||
.confirm-recovery-phrase {
|
||||
grid-template-columns: repeat(2, 1fr);
|
||||
width: 100%;
|
||||
}
|
||||
}
|
||||
|
||||
@media (max-width: 350px) {
|
||||
.confirm-recovery-phrase {
|
||||
grid-template-columns: repeat(1, 1fr);
|
||||
width: 100%;
|
||||
}
|
||||
}
|
||||
|
|
Loading…
Reference in New Issue