feat(overview): change width of overview container for screen widths
This commit is contained in:
parent
401f6c5f1b
commit
4014c0352d
|
@ -12,7 +12,7 @@ const Overview = () => {
|
|||
imgHeight="200%"
|
||||
rightImageSrc="./background-images/sync-status-background.png"
|
||||
>
|
||||
<YStack space={'$2'} width="100%">
|
||||
<YStack space={'$3'} className={styles['overview-container']}>
|
||||
<Text size={27} weight={'semibold'}>
|
||||
Overview
|
||||
</Text>
|
||||
|
|
|
@ -1,3 +1,7 @@
|
|||
.overview-container {
|
||||
width: 121%;
|
||||
}
|
||||
|
||||
.overview-cards {
|
||||
display: flex;
|
||||
flex-wrap: wrap;
|
||||
|
@ -15,6 +19,8 @@
|
|||
}
|
||||
|
||||
@media screen and (max-width: 1000px) {
|
||||
.overview-container {
|
||||
width: 100%;
|
||||
}
|
||||
|
||||
.overview-cards {
|
||||
|
|
Loading…
Reference in New Issue