Skip to content

Commit

Permalink
Fix visibility classes
Browse files Browse the repository at this point in the history
  • Loading branch information
lukasjuhrich committed Oct 7, 2023
1 parent 8a2b761 commit 75e6745
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions sipa/templates/base.html
Original file line number Diff line number Diff line change
Expand Up @@ -84,7 +84,7 @@
<img id="logo" src="{{ url_for('static', filename='img/logo_hover.png') }}"
alt="AG DSN"/>
</a>
<a class="navbar-brand visible-xs" href="{{ url_for('generic.index') }}">
<a class="navbar-brand d-sm-none" href="{{ url_for('generic.index') }}">
AG DSN
</a>
</div>
Expand Down Expand Up @@ -140,7 +140,7 @@
</ul>

<ul id="navbar-right-dropdown"
class="nav navbar-nav navbar-right visible-md-block visible-sm-block">
class="nav navbar-nav navbar-right d-xs-none d-sm-block">
<li>
<button id="language-dropdown-button" type="button"
class="btn btn-default navbar-btn"
Expand Down Expand Up @@ -212,7 +212,7 @@ <h1>AG DSN</h1>
<div id="center" class="container">
<div class="row">
<main class="col-sm-9">
<div class="visible-xs">
<div class="d-sm-none">
<br/>
{{ services_status.widget() }}
<hr/>
Expand Down

0 comments on commit 75e6745

Please sign in to comment.