Add text link style.

This commit is contained in:
Bryan 2021-10-20 14:53:47 -04:00
parent 19bbe682f7
commit b984714003
3 changed files with 15 additions and 0 deletions

View file

@ -61,6 +61,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;
}
}