mirror of
https://github.com/Grasscutters/mitmproxy.git
synced 2024-11-29 11:03:13 +00:00
little changes in css
This commit is contained in:
parent
adfdcc9391
commit
78bd99f97c
@ -16,8 +16,23 @@
|
|||||||
section {
|
section {
|
||||||
display: flex;
|
display: flex;
|
||||||
flex-direction: column;
|
flex-direction: column;
|
||||||
padding: 0 !important;
|
>article{
|
||||||
|
overflow: auto;
|
||||||
|
padding: 5px 12px 0;
|
||||||
}
|
}
|
||||||
|
>footer {
|
||||||
|
box-shadow: 0 0 3px gray;
|
||||||
|
padding: 2px;
|
||||||
|
margin: 0;
|
||||||
|
height:23px;
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
section.detail section.error{
|
||||||
|
overflow: auto;
|
||||||
|
padding: 5px 12px 0;
|
||||||
|
}
|
||||||
|
|
||||||
|
|
||||||
.first-line {
|
.first-line {
|
||||||
.monospace();
|
.monospace();
|
||||||
@ -41,19 +56,6 @@
|
|||||||
hr {
|
hr {
|
||||||
margin: 0 0 5px;
|
margin: 0 0 5px;
|
||||||
}
|
}
|
||||||
|
|
||||||
article {
|
|
||||||
overflow: auto;
|
|
||||||
padding: 5px 12px 0;
|
|
||||||
}
|
|
||||||
|
|
||||||
footer {
|
|
||||||
box-shadow: 0 0 3px gray;
|
|
||||||
padding: 2px;
|
|
||||||
margin: 0;
|
|
||||||
height:23px;
|
|
||||||
}
|
|
||||||
|
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
||||||
|
@ -114,7 +114,7 @@ export function Timing({ flow }) {
|
|||||||
|
|
||||||
export default function Details({ flow }) {
|
export default function Details({ flow }) {
|
||||||
return (
|
return (
|
||||||
<section>
|
<section className="detail">
|
||||||
<h4>Client Connection</h4>
|
<h4>Client Connection</h4>
|
||||||
<ConnectionInfo conn={flow.client_conn}/>
|
<ConnectionInfo conn={flow.client_conn}/>
|
||||||
|
|
||||||
|
@ -216,7 +216,7 @@ ErrorView.propTypes = {
|
|||||||
|
|
||||||
export function ErrorView({ flow }) {
|
export function ErrorView({ flow }) {
|
||||||
return (
|
return (
|
||||||
<section>
|
<section className="error">
|
||||||
<div className="alert alert-warning">
|
<div className="alert alert-warning">
|
||||||
{flow.error.msg}
|
{flow.error.msg}
|
||||||
<div>
|
<div>
|
||||||
|
Loading…
Reference in New Issue
Block a user