Skip to content

Commit

Permalink
style: nav style update for vertical tagging app (#4563)
Browse files Browse the repository at this point in the history
  • Loading branch information
AfaqShuaib09 authored Feb 4, 2025
1 parent 2884cc5 commit c375e83
Show file tree
Hide file tree
Showing 2 changed files with 6 additions and 2 deletions.
7 changes: 5 additions & 2 deletions course_discovery/apps/tagging/templates/tagging/base.html
Original file line number Diff line number Diff line change
Expand Up @@ -18,13 +18,16 @@
<div class="container">
<div class="d-flex justify-content-between align-items-center">
<div class="d-flex align-items-center">
<a class="navbar-brand" href="{% url 'tagging:course_list' %}">
<a class="navbar-brand me-3" href="{% url 'tagging:course_list' %}">
<img src="{{ HEADER_LOGO_URL }}" alt="header logo" height="30" class="d-inline-block align-middle" />
<span class="fw-bold ml-2 me-3">Course Tagging</span>
</a>
<nav class="navbar navbar-expand-lg">
<div class="collapse navbar-collapse" id="navbarNav">

<ul class="navbar-nav">
<li class="nav-item {% if request.resolver_match.url_name == 'course_list' %}active{% endif %}">
<a class="nav-link" href="{% url 'tagging:course_list' %}">Course Tagging</a>
</li>
<li class="nav-item {% if request.resolver_match.url_name == 'vertical_list' %}active{% endif %}">
<a class="nav-link" href="{% url 'tagging:vertical_list' %}">Verticals</a>
</li>
Expand Down
1 change: 1 addition & 0 deletions course_discovery/static/css/tagging.css
Original file line number Diff line number Diff line change
@@ -1,5 +1,6 @@
.site-header .active {
border-bottom: 2px solid #454545;
font-weight: bold;
}
.page-link {
color: #00262b;
Expand Down

0 comments on commit c375e83

Please sign in to comment.