CSS link coloring

This commit is contained in:
Jordan Stremming
2019-03-22 13:04:58 -05:00
parent bb4765ae71
commit 4df83e8ff4
2 changed files with 6 additions and 2 deletions

View File

@@ -14,6 +14,10 @@ $theme-colors: (
background-color: map_get($theme-colors, "primary") !important;
}
a {
@extend .text-primary
}
// responsive font
@include media-breakpoint-down(sm) {
html{font-size: 14px;}

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') }}" class="text-primary" tabindex='190'>
<a 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') }}" class="text-primary" tabindex='195'>
<a href="{{ url_for('user.forgot_password') }}" tabindex='195'>
{% trans %}Forgot your Password?{% endtrans %}</a>
{% endif %}
</div>