CASH-1931

CASH-1931 use bold for modal header sections.
Do not let the link wrap text on to a new line
This commit is contained in:
CarlNation 2025-12-09 09:25:32 -05:00
parent 59d4b42609
commit 53b928a711
2 changed files with 6 additions and 2 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

@ -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>