Commit 6fd5a048dad9b291e2de6a00de6f5b8441161cd6
1 parent
57a3f1b0
Exists in
master
and in
1 other branch
Fix container width
Showing
4 changed files
with
16 additions
and
7 deletions
Show diff stats
src/app/components/navbar/navbar.scss
src/app/profile/profile.html
1 | -<div class="container"> | |
2 | - | |
3 | - <div> | |
4 | - <acme-navbar></acme-navbar> | |
5 | - </div> | |
6 | - | |
1 | +<div class="profile-container"> | |
7 | 2 | <div class="row"> |
8 | 3 | <ng-include ng-repeat="box in vm.owner.boxes | orderBy: vm.boxesOrder" src="'app/views/profile/box.html'"></ng-include> |
9 | 4 | </div> |
10 | - | |
11 | 5 | </div> | ... | ... |
src/index.html
... | ... | @@ -25,6 +25,7 @@ |
25 | 25 | <p class="browsehappy">You are using an <strong>outdated</strong> browser. Please <a href="http://browsehappy.com/">upgrade your browser</a> to improve your experience.</p> |
26 | 26 | <![endif]--> |
27 | 27 | |
28 | + <acme-navbar></acme-navbar> | |
28 | 29 | <div ui-view></div> |
29 | 30 | |
30 | 31 | <!-- build:js(src) scripts/vendor.js --> | ... | ... |