style: Explore Courses button doesn't follow the same style conventions of MFE header (#35994)

This commit is contained in:
Juan Carlos Iasenza (Aulasneo)
2025-01-14 16:43:51 -03:00
committed by GitHub
parent 755bf98091
commit 7fa68243a0
2 changed files with 2 additions and 2 deletions

View File

@@ -48,7 +48,7 @@ from openedx.core.djangoapps.site_configuration import helpers as configuration_
<div class="mobile-nav-item hidden-mobile nav-item nav-tab">
<a class="tab-nav-link discover-new-link" href="${marketing_link('COURSES')}"
aria-current="${'page' if '/courses' in request.path else 'false'}">
${_('Discover New')}
${_("Discover New")}
</a>
</div>
% endif

View File

@@ -39,7 +39,7 @@ from openedx.core.djangoapps.user_authn.toggles import should_redirect_to_authn_
% if allows_login:
% if can_discover_courses:
<div class="mobile-nav-item hidden-mobile nav-item">
<a href="/courses">${_('Explore courses')}</a>
<a href="/courses">${_("Explore courses")}</a>
</div>
%endif
% endif