mirror of
https://github.com/openziti/zrok.git
synced 2024-12-23 15:18:52 +01:00
responsive layout (#234)
This commit is contained in:
parent
f0daa9371e
commit
0f4a975495
@ -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>
|
||||||
|
@ -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"
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
|
@ -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;
|
||||||
|
Loading…
Reference in New Issue
Block a user