Merge pull request #16 from Safelite/brm-text-link

Add text link style.
This commit is contained in:
bmauger 2021-10-21 09:42:30 -04:00 committed by GitHub
commit c9b2b9094b
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23
3 changed files with 15 additions and 0 deletions

View file

@ -62,6 +62,11 @@
/>
</div>
</div>
<div class="row">
<div class="col my-3 d-flex align-items-center">
<a href="#">Text Link</a>
</div>
</div>
</div>
</template>

View file

@ -24,6 +24,7 @@ $grays: (
$blue-200: #E7F1F6;
$blue-300: #B9D7E6;
$blue-400: #125B7E;
$blue-600: #1574A1;
$blue-700: #06577C;
$blue: #167CAC;//Default Blue (Blue 500)
$indigo: #6610f2;

View file

@ -3,3 +3,12 @@ body {
background-color: #fff;
padding: 0 .75rem;
}
a {
color: $blue-600;
text-decoration: none;
border-bottom: 1px solid $blue-600;
&:hover {
color: $blue-400;
}
}