Merge branch 'release/2026.01.08' into feature/CASH-1687

This commit is contained in:
Chris 2025-12-09 11:43:42 -05:00 committed by GitHub
commit 06684105ca
No known key found for this signature in database
GPG key ID: B5690EEEBB952194
3 changed files with 8 additions and 4 deletions

View file

@ -253,9 +253,10 @@ export default {
height: 40px; height: 40px;
} }
h3 { h3 {
font-family: UrbanistSemibold; font-family: UrbanistBold;
font-size: 1rem; font-size: 1rem;
margin: 0 0 0 0.5rem; margin: 0 0 0 0.5rem;
color: $black;
} }
} }
p { p {

View file

@ -123,8 +123,8 @@ $body-color: $gray-600;
//Fonts //Fonts
$font-family-sans-serif: UrbanistRegular, Arial, Helvetica, sans-serif; $font-family-sans-serif: UrbanistRegular, Arial, Helvetica, sans-serif;
$font-family-monospace: $font-family-monospace: UrbanistRegular, Menlo, Monaco, Consolas, "Liberation Mono", "Courier New",
UrbanistRegular, Menlo, Monaco, Consolas, "Liberation Mono", "Courier New", monospace; monospace;
// stylelint-enable value-keyword-case // stylelint-enable value-keyword-case
$font-family-base: $font-family-sans-serif; $font-family-base: $font-family-sans-serif;
$font-family-code: $font-family-monospace; $font-family-code: $font-family-monospace;

View file

@ -15,7 +15,7 @@
<!-- prettier-ignore --> <!-- prettier-ignore -->
<a v-else-if="linkType === 'textSmall'" @click="handleClick" class="small" :href="href">{{ text }}<slot name="after-text"></slot></a> <a v-else-if="linkType === 'textSmall'" @click="handleClick" class="small" :href="href">{{ text }}<slot name="after-text"></slot></a>
<!-- prettier-ignore --> <!-- prettier-ignore -->
<a v-else-if="linkType === 'text'" @click="handleClick" :href="href">{{ text }}<slot name="after-text"></slot></a> <a v-else-if="linkType === 'text'" @click="handleClick" class="text-link" :href="href">{{ text }}<slot name="after-text"></slot></a>
</template> </template>
<script> <script>
@ -89,5 +89,8 @@ a {
&.new-window-link { &.new-window-link {
margin-bottom: 1.5rem; margin-bottom: 1.5rem;
} }
&.text-link {
white-space: nowrap;
}
} }
</style> </style>