feat: add media query for regenerate id container

This commit is contained in:
RadoslavDimchev 2023-12-04 20:09:45 +02:00
parent 2f94f1a259
commit eb5a1dbc42
2 changed files with 7 additions and 0 deletions

View File

@ -31,6 +31,7 @@ const GenerateId = ({ isAwaitingPairing }: GenerateIdProps) => {
<YStack space={'$2'}>
<div
style={{ display: 'flex', justifyContent: 'space-between' }}
className={styles['regenerate-id-container']}
>
<StatusText size={19} weight={'semibold'}>
Pair with Command line

View File

@ -0,0 +1,6 @@
@media screen and (max-width: 440px) {
.regenerate-id-container {
flex-direction: column;
gap: 12px;
}
}