CASH-824 finishing touches, ensured letter  spacing and font are being applied globally
This commit is contained in:
Johnny shultz 2025-06-10 14:35:57 -04:00
parent f4d1e0a234
commit 17da8ff309
10 changed files with 5 additions and 14 deletions

View file

@ -11,7 +11,6 @@
<meta name="viewport" content="width=device-width,initial-scale=1.0">
<link rel="icon" href="<%= BASE_URL %>favicon.ico">
<title><%= htmlWebpackPlugin.options.title %></title>
<link href="https://fonts.googleapis.com/css2?family=Urbanist:wght@400;500;700&display=swap" rel="stylesheet">
</head>
<body>

View file

@ -914,7 +914,6 @@ export default {
.month-year {
grid-area: 1 / 1 / 2 / 5;
font-family: UrbanistBold;
letter-spacing: 0.03em;
color: $black;
justify-content: center;
margin-bottom: 0.5rem;
@ -1256,7 +1255,6 @@ export default {
font-size-adjust: 0.5; // needed for Averta fonts baseline alignment
&.price {
font-family: "UrbanistRegular";
font-weight: 400;
}
}

View file

@ -129,7 +129,6 @@ export default {
<style lang="scss">
.dockableContainer {
&.showDockableContainer {
font-family: UrbanistRegular;
color: $gray-600;
.sidebarBody {
button {

View file

@ -424,7 +424,6 @@ export default {
text-transform: uppercase;
font-size: 0.875rem;
font-weight: 600;
letter-spacing: 0.03em;
}
.special-save-box {
background-color: $green-100;

View file

@ -476,7 +476,6 @@ export default {
text-transform: uppercase;
font-size: 0.875rem;
font-weight: 600;
letter-spacing: 0.03em;
}
.special-save-box {
background-color: $green-100;

View file

@ -405,7 +405,6 @@ export default {
text-transform: uppercase;
font-size: 0.875rem;
font-weight: 600;
letter-spacing: 0.03em;
}
.special-save-box {
background-color: $green-100;

View file

@ -631,7 +631,6 @@ export default {
margin-left: 0.5rem;
strong {
font-weight: 600;
letter-spacing: 0.03em;
}
}
.success-image {

View file

@ -103,5 +103,5 @@ select,
textarea,
option,
.btn {
letter-spacing: 0.03em;
letter-spacing: 0.03rem;
}

View file

@ -4,7 +4,7 @@ body {
font-size: 1rem;
line-height: 1.625;
font-weight: 400;
letter-spacing: 0.03em;
letter-spacing: 0.03rem;
}
//Headings
@ -44,7 +44,7 @@ h5,
h6,
.h6 {
line-height: 1.7;
letter-spacing: 0.03em;
letter-spacing: 0.03rem;
text-transform: uppercase;
}

View file

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