Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion app/views/AppContainer.jsx
Original file line number Diff line number Diff line change
Expand Up @@ -43,7 +43,7 @@ export default class AppContainer extends React.Component {
<div>
<Header registry={this.state.registry}/>

<div className="container">
<div className="container-fluid">
<Switch>
<Route exact path="/login" component={LoginView}/>
<Route path="/containers/:container_name*/" component={HomeView} registry={this.state.registry}/>
Expand Down
4 changes: 2 additions & 2 deletions app/views/HomeView.jsx
Original file line number Diff line number Diff line change
Expand Up @@ -296,7 +296,7 @@ export default class HomeView extends Component {
}
return(
<div>
<Col md={3}>
<Col md={4}>
<h2>Images</h2>
<ContainerList
filter={this.state.container_filter}
Expand All @@ -308,7 +308,7 @@ export default class HomeView extends Component {
onFilterChange={(event) => this.handleContainerFilter(event)}
/>
</Col>
<Col md={3}>
<Col md={2}>
<h2>Tags</h2>
{this.renderTagsList()}
</Col>
Expand Down
5 changes: 5 additions & 0 deletions public/app.css
Original file line number Diff line number Diff line change
Expand Up @@ -2,6 +2,11 @@ html, body{
height:100%;
}

.container-fluid {
min-width: 80vw;
max-width: 90vw;
}

.footer-pad {
padding-top: 100px;
}
Expand Down