Commit e09dfc5e49bfd242553e4700e882d3dc97718617
1 parent
4581f0f8
Exists in
master
and in
1 other branch
Fix navbar height
Showing
2 changed files
with
5 additions
and
6 deletions
Show diff stats
src/app/content-viewer/navbar-actions.html
1 | -<ul class="nav navbar-nav navbar-right"> | |
1 | +<ul class="nav navbar-nav"> | |
2 | 2 | <li ng-show="vm.profile"> |
3 | 3 | <a href="#" role="button" ui-sref="main.profile.cms({profile: vm.profile.identifier})"> |
4 | - <span class="fa-stack"> | |
5 | - <i class="fa fa-file-o fa-stack-2x"></i> | |
6 | - <i class="fa fa-plus fa-stack-1x"></i> | |
7 | - </span> New Post | |
4 | + <i class="fa fa-file fa-fw fa-lg"></i> New Post | |
8 | 5 | </a> |
9 | 6 | </li> |
10 | 7 | </ul> | ... | ... |
src/app/index.scss
... | ... | @@ -7,7 +7,9 @@ $icon-font-path: "../../bower_components/bootstrap-sass/assets/fonts/bootstrap/" |
7 | 7 | $fa-font-path: "../../bower_components/font-awesome/fonts"; |
8 | 8 | @import "../../bower_components/font-awesome/scss/font-awesome.scss"; |
9 | 9 | |
10 | -$navbar-height: 42px; | |
10 | +$navbar-height: 50px; | |
11 | +$navbar-padding-vertical: 9px; | |
12 | +$line-height-computed: 32px; | |
11 | 13 | $brand-success: #1E96D0; |
12 | 14 | $text-color: #676767; |
13 | 15 | $panel-default-text: rgb(44, 62, 80); | ... | ... |