mirror of
https://github.com/status-im/nimbus-gui.git
synced 2025-01-09 11:11:59 +00:00
create LogsPage
This commit is contained in:
parent
792448cdcd
commit
f609e58d70
@ -1,27 +1,43 @@
|
||||
import { Stack, YStack } from "tamagui";
|
||||
import { Stack, XStack, YStack } from "tamagui";
|
||||
import TitleLogo from "../Dashboard/TitleLogo";
|
||||
import LogsTerminal from "./logsTerminal";
|
||||
|
||||
import LeftSidebar from "../../components/General/LeftSidebar/LeftSidebar";
|
||||
import RightSidebar from "../../components/General/RightSideBar/RightSidebar";
|
||||
import LogsTerminal from "./LogsTerminal";
|
||||
import LogsSumCard from "./LogsSumCard";
|
||||
|
||||
|
||||
|
||||
const LogsPage = () => {
|
||||
return (
|
||||
<YStack
|
||||
space="$4"
|
||||
alignItems="start"
|
||||
px="24px"
|
||||
minWidth="500px"
|
||||
width="50vh"
|
||||
style={{
|
||||
flexGrow: '1',
|
||||
marginTop: '16px',
|
||||
overflowY: 'auto',
|
||||
}}
|
||||
className={'transparent-scrollbar'}
|
||||
>
|
||||
<TitleLogo />
|
||||
<LogsTerminal></LogsTerminal>
|
||||
</YStack>
|
||||
<XStack style={{ height: '100vh' }}>
|
||||
<LeftSidebar />
|
||||
<YStack
|
||||
space="$4"
|
||||
alignItems="start"
|
||||
px="24px"
|
||||
minWidth="500px"
|
||||
width="50vh"
|
||||
style={{
|
||||
flexGrow: '1',
|
||||
marginTop: '16px',
|
||||
overflowY: 'auto',
|
||||
}}
|
||||
className={'transparent-scrollbar'}
|
||||
>
|
||||
<TitleLogo />
|
||||
<Stack style={{ width: '100%', alignItems: 'center' }}>
|
||||
<LogsTerminal />
|
||||
<XStack space='$8'>
|
||||
<LogsSumCard />
|
||||
<LogsSumCard />
|
||||
<LogsSumCard />
|
||||
<LogsSumCard />
|
||||
</XStack>
|
||||
</Stack>
|
||||
</YStack>
|
||||
<RightSidebar />
|
||||
</XStack >
|
||||
)
|
||||
}
|
||||
|
||||
|
Loading…
x
Reference in New Issue
Block a user