Merge pull request #16 from Safelite/brm-text-link
Add text link style.
This commit is contained in:
commit
c9b2b9094b
3 changed files with 15 additions and 0 deletions
|
|
@ -62,6 +62,11 @@
|
||||||
/>
|
/>
|
||||||
</div>
|
</div>
|
||||||
</div>
|
</div>
|
||||||
|
<div class="row">
|
||||||
|
<div class="col my-3 d-flex align-items-center">
|
||||||
|
<a href="#">Text Link</a>
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
</div>
|
</div>
|
||||||
</template>
|
</template>
|
||||||
|
|
||||||
|
|
|
||||||
|
|
@ -24,6 +24,7 @@ $grays: (
|
||||||
$blue-200: #E7F1F6;
|
$blue-200: #E7F1F6;
|
||||||
$blue-300: #B9D7E6;
|
$blue-300: #B9D7E6;
|
||||||
$blue-400: #125B7E;
|
$blue-400: #125B7E;
|
||||||
|
$blue-600: #1574A1;
|
||||||
$blue-700: #06577C;
|
$blue-700: #06577C;
|
||||||
$blue: #167CAC;//Default Blue (Blue 500)
|
$blue: #167CAC;//Default Blue (Blue 500)
|
||||||
$indigo: #6610f2;
|
$indigo: #6610f2;
|
||||||
|
|
|
||||||
|
|
@ -3,3 +3,12 @@ body {
|
||||||
background-color: #fff;
|
background-color: #fff;
|
||||||
padding: 0 .75rem;
|
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