fix: update imports for page wrapper

This commit is contained in:
RadoslavDimchev 2023-08-15 09:52:48 +03:00
parent 690346c934
commit 676bb2d0b5
4 changed files with 3 additions and 7 deletions

View File

@ -2,7 +2,7 @@ import { useState } from 'react'
import BreadcrumbBar from './BreadcrumbBar'
import { Button as StatusButton, Tag, Text, Avatar, Checkbox } from '@status-im/components'
import { Label, Separator, XStack, YStack } from 'tamagui'
import LayoutComponent from './LayoutComponent'
import LayoutComponent from './PageWrapperShadow'
import NimbusLogo from './NimbusLogo'
import Titles from './Titles'
import NodeIcon from './NodeIcon'

View File

@ -1,4 +1,4 @@
import LayoutComponent from './LayoutComponent'
import LayoutComponent from './PageWrapperShadow'
import './LandingPage.css'
import QuickStartBar from './QuickStartBar'

View File

@ -22,7 +22,6 @@
max-width: 70%;
flex: 1 0 70%;
display: flex;
/* flex-wrap: wrap; */
flex-direction: column;
}
header {
@ -75,8 +74,6 @@ header > div {
}
/* LAYOUT RIGHT ELEMENT WITH IMAGE TAKING UP THE WHOLE HIGHT OF THE VIEWPORT */
.layout-right {
flex: 0 0 45%;
@ -109,7 +106,6 @@ header > div {
top: 50%;
left: 50%;
transform: translate(-50%, -50%);
/* height: 100%; */
height: 140%;
width: auto;
}

View File

@ -1,5 +1,5 @@
import { Stack, XStack, YStack } from 'tamagui'
import LayoutComponent from '../../components/LayoutComponent'
import LayoutComponent from '../../components/PageWrapperShadow'
import NimbusLogo from '../../components/NimbusLogo'
import Titles from '../../components/Titles'
import DeviceStorageHealth from '../../components/DeviceStorageHealth'