move style out of template

This commit is contained in:
Mario Vavti 2017-11-07 10:58:15 +01:00 committed by Mario
parent 96d439bcee
commit 47d15f3bf4
2 changed files with 7 additions and 3 deletions

View File

@ -1255,6 +1255,11 @@ img.mail-conv-sender-photo {
border-radius: $radius; border-radius: $radius;
} }
#nav-app-link {
padding: 0 !important;
line-height: 1.175;
}
.page-title { .page-title {
margin: 7px 0px; margin: 7px 0px;
} }

View File

@ -60,11 +60,10 @@
{{/if}} {{/if}}
</div> </div>
<div class="navbar-nav mr-auto"> <div class="navbar-nav mr-auto">
<a id="nav-app-link" href="{{$url}}" class="nav-link" style="padding: .175rem;{{if $sitelocation}} line-height: 1; height:2.35rem;{{/if}}"> <a id="nav-app-link" href="{{$url}}" class="nav-link">
{{$sel.name}} {{$sel.name}}
{{if $sitelocation}} {{if $sitelocation}}
<br> <br><small>{{$sitelocation}}</small>
<small class="text-muted">{{$sitelocation}}</small>
{{/if}} {{/if}}
</a> </a>
</div> </div>