little changes in css

This commit is contained in:
Clemens 2016-08-09 16:15:45 +02:00
parent adfdcc9391
commit 78bd99f97c
3 changed files with 18 additions and 16 deletions

View File

@ -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;
}
} }

View File

@ -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}/>

View File

@ -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>