responsive layout (#234)

This commit is contained in:
Michael Quigley 2023-05-03 14:11:09 -04:00
parent f0daa9371e
commit 0f4a975495
No known key found for this signature in database
GPG Key ID: 9B60314A9DD20A62
3 changed files with 3 additions and 14 deletions

View File

@ -66,7 +66,7 @@ const Console = (props) => {
</Navbar> </Navbar>
<Container fluid={"xl"}> <Container fluid={"xl"}>
<Row id={"controls-row"}> <Row id={"controls-row"}>
<Col> <Col lg={6}>
<Visualizer <Visualizer
user={props.user} user={props.user}
overview={overview} overview={overview}
@ -75,7 +75,7 @@ const Console = (props) => {
setSelection={setSelection} setSelection={setSelection}
/> />
</Col> </Col>
<Col> <Col lg={6}>
<Detail user={props.user} selection={selection} /> <Detail user={props.user} selection={selection} />
</Col> </Col>
</Row> </Row>

View File

@ -34,22 +34,11 @@ const SharesTab = (props) => {
name: "Frontend", name: "Frontend",
selector: row => <a href={row.frontendEndpoint} target={"_"}>{row.frontendEndpoint}</a>, selector: row => <a href={row.frontendEndpoint} target={"_"}>{row.frontendEndpoint}</a>,
sortable: true, sortable: true,
hide: "md"
}, },
{ {
name: "Backend", name: "Backend",
selector: row => row.backendProxyEndpoint, selector: row => row.backendProxyEndpoint,
sortable: true, sortable: true,
},
{
name: "Share Mode",
selector: row => row.shareMode,
hide: "md"
},
{
name: "Token",
selector: row => row.token,
sortable: true,
hide: "md" hide: "md"
}, },
{ {

View File

@ -64,7 +64,7 @@ code, pre {
} }
.fullscreen { .fullscreen {
background-color: #3b2693; background: linear-gradient(180deg, #0E0238 0%, #231069 100%);
padding: 25px; padding: 25px;
color: white; color: white;
display: flex; display: flex;