Skip to content

Commit

Permalink
Fix some layout issue
Browse files Browse the repository at this point in the history
  • Loading branch information
tchiotludo committed Jan 25, 2019
1 parent 9f0a972 commit 7b50327
Show file tree
Hide file tree
Showing 3 changed files with 5 additions and 5 deletions.
2 changes: 1 addition & 1 deletion assets/modules/templates/bootstrap.scss
Original file line number Diff line number Diff line change
Expand Up @@ -60,6 +60,6 @@ nav.navbar {
}
}

legend {
form >legend {
border-bottom: 2px solid $gray-700;
}
7 changes: 3 additions & 4 deletions assets/modules/templates/layout.scss
Original file line number Diff line number Diff line change
Expand Up @@ -73,10 +73,10 @@ form.khq-form div.khq-submit,
border-top: 1px solid $nav-tabs-border-color;
display: flex;
justify-content: flex-end;
width: calc(100vw);
width: calc(100vw - 15px);
@include media-breakpoint-up(md) {
left: $menu-width;
width: calc(100vw - #{$menu-width});
width: calc(100vw - #{$menu-width} - 15px);
}

> div {
Expand All @@ -96,8 +96,7 @@ form.khq-form div.khq-submit,
}
}

form.khq-form div.khq-submit {

.tab-pane form.khq-form div.khq-submit {
width: calc(100vw - 15px);
@include media-breakpoint-up(md) {
width: calc(100vw - #{$menu-width} - 15px);
Expand Down
1 change: 1 addition & 0 deletions assets/modules/templates/sidebar.scss
Original file line number Diff line number Diff line change
Expand Up @@ -7,6 +7,7 @@
font-family: $font-family-title;
font-size: $font-size-lg;
border-right: 1px solid $nav-tabs-border-color;
z-index: 2;

.sidebar-header {
padding: 5px 10px;
Expand Down

0 comments on commit 7b50327

Please sign in to comment.