1
0
Fork 0
mirror of https://github.com/muerwre/vault-frontend.git synced 2025-04-25 04:46:40 +07:00

fixed boris layout

This commit is contained in:
Fedor Katurov 2020-06-09 16:46:44 +07:00
parent 8435f1804f
commit 0d5e035c7f
2 changed files with 20 additions and 4 deletions

View file

@ -129,7 +129,9 @@ const BorisLayoutUnconnected: FC<IProps> = ({
<p className="grey">//&nbsp;Такова&nbsp;жизнь.</p>
</div>
<BorisStats stats={stats} />
<div className={styles.stats__wrap}>
<BorisStats stats={stats} />
</div>
</Group>
</Sticky>
</Group>

View file

@ -46,7 +46,7 @@
width: 100%;
@include tablet {
flex-direction: column;
flex-direction: column-reverse;
}
}
@ -68,8 +68,9 @@
}
@include tablet {
height: 100px;
height: 40px;
width: 100%;
padding-bottom: 0;
img {
display: none;
@ -99,15 +100,22 @@
align-items: flex-start;
justify-content: center;
width: 100%;
text-align: center;
display: none;
padding: $gap;
font-size: 48px;
font-size: 32px;
}
}
.caption_text {
max-width: 400px;
text-transform: uppercase;
@include tablet {
max-width: 100%;
margin: auto;
}
}
.stats {
@ -146,4 +154,10 @@
margin-bottom: $gap;
}
}
&__wrap {
@include tablet {
display: none;
}
}
}