Skip to content

Commit

Permalink
Merge pull request #2 from bartongroup/design
Browse files Browse the repository at this point in the history
Minor design improvements
  • Loading branch information
stuartmac authored Nov 12, 2024
2 parents 51d866a + fb486c6 commit 23407e5
Show file tree
Hide file tree
Showing 2 changed files with 8 additions and 3 deletions.
5 changes: 5 additions & 0 deletions app/static/css/styles.css
Original file line number Diff line number Diff line change
Expand Up @@ -9,3 +9,8 @@
.table-warning {
background-color: #ffeeba; /* light yellow */
}

/* Broaden navbar */
.navbar {
height: 80px;
}
6 changes: 3 additions & 3 deletions app/templates/base.html
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>{% block title %}FASTA Processor{% endblock %}</title>
<title>{% block title %}DRSASP@UoD{% endblock %}</title>
<!-- jQuery -->
<script src="https://code.jquery.com/jquery-3.7.1.min.js"
integrity="sha384-1H217gwSVyLSIfaLxHbE7dRb3v4mYCKbpQvzx0cegeju1MVsGrX5xXxAvs/HgeFs"
Expand All @@ -20,7 +20,7 @@
<!-- Navigation Bar -->
<nav class="navbar navbar-expand-lg navbar-dark bg-primary">
<div class="container">
<a class="navbar-brand" href="{{ url_for('index') }}">FASTA Processor</a>
<a class="navbar-brand" href="{{ url_for('index') }}">DRSASP@UoD</a>
<button class="navbar-toggler" type="button" data-bs-toggle="collapse" data-bs-target="#navbarNav"
aria-controls="navbarNav" aria-expanded="false" aria-label="Toggle navigation">
<span class="navbar-toggler-icon"></span>
Expand All @@ -29,7 +29,7 @@
<ul class="navbar-nav">
<li class="nav-item">
<a class="nav-link {% if request.endpoint == 'index' %}active{% endif %}" aria-current="page"
href="{{ url_for('index') }}">Home</a>
href="{{ url_for('index') }}">ClustalO</a>
</li>
{% if session.get('session_id') %}
<li class="nav-item">
Expand Down

0 comments on commit 23407e5

Please sign in to comment.