fix(client): Guide spacing and coloring of active element

This commit is contained in:
The Coding Aviator
2019-02-01 02:00:20 +05:30
committed by Valeriy
parent fabd45e1b4
commit e719b917a8
2 changed files with 4 additions and 2 deletions

View File

@ -68,7 +68,7 @@ class Layout extends React.Component {
toggleExpandedState toggleExpandedState
}) => ( }) => (
<Fragment> <Fragment>
<Spacer size={2} /> <Spacer size={1} />
<Grid> <Grid>
<Row> <Row>
<Col <Col
@ -110,6 +110,7 @@ class Layout extends React.Component {
} }
} }
Layout.displayName = 'Layout'; Layout.displayName = 'Layout';
Layout.propTypes = propTypes; Layout.propTypes = propTypes;

View File

@ -69,7 +69,7 @@
.content, .content,
.sideNav { .sideNav {
/* 100vh - (navbar height) - (spacer height) */ /* 100vh - (navbar height) - (spacer height) */
height: calc(100vh - 38px - 60px); height: calc(100vh - 38px - 30px);
overflow-y: auto; overflow-y: auto;
} }
@ -141,6 +141,7 @@
border: none; border: none;
border-radius: 0; border-radius: 0;
cursor: pointer; cursor: pointer;
color: #006400;
} }
.bodyContainer { .bodyContainer {