Add text link style.
This commit is contained in:
parent
19bbe682f7
commit
b984714003
3 changed files with 15 additions and 0 deletions
|
|
@ -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>
|
||||
|
||||
|
|
|
|||
|
|
@ -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;
|
||||
|
|
|
|||
|
|
@ -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;
|
||||
}
|
||||
}
|
||||
|
|
|
|||
Loading…
Reference in a new issue