styling fix

made links maroon without making every a tag maroon
This commit is contained in:
Aaron Kimbrell
2019-03-23 18:07:35 -05:00
parent f4b9a2b5d7
commit b1fbda12ac
2 changed files with 3 additions and 3 deletions
+1 -1
View File
@@ -14,7 +14,7 @@ $theme-colors: (
background-color: map_get($theme-colors, "primary") !important;
}
a {
.link-maroon {
@extend .text-primary
}
+2 -2
View File
@@ -19,7 +19,7 @@
</div>
<div class="col-6 text-right">
{% if user_manager.USER_ENABLE_REGISTER and not user_manager.USER_REQUIRE_INVITATION %}
<a href="{{ url_for('user.register') }}" tabindex='190'>
<a class="link-maroon" href="{{ url_for('user.register') }}" tabindex='190'>
{% trans %}New here? Register.{% endtrans %}</a>
{% endif %}
</div>
@@ -42,7 +42,7 @@
</div>
<div class="col-6 text-right">
{% if user_manager.USER_ENABLE_FORGOT_PASSWORD %}
<a href="{{ url_for('user.forgot_password') }}" tabindex='195'>
<a class="link-maroon" href="{{ url_for('user.forgot_password') }}" tabindex='195'>
{% trans %}Forgot your Password?{% endtrans %}</a>
{% endif %}
</div>