Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion src/assets/styles/main.css
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@

/* Apply this to your body or wrapper class for use with services-ui elements (temp) */
.services-ui-base {
font-family: 'Inter', 'sans-serif';
font-family: 'Inter', sans-serif;
font-size: 0.8125rem;
}

Expand Down
2 changes: 1 addition & 1 deletion src/assets/styles/variables.css
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@ html {
--txt-default: 0.875rem; /* 14px */
--txt-input: var(--txt-default); /* 14px */
--line-height-input: 1.25rem; /* 20px */
--font-sans: 'Inter', 'sans-serif';
--font-sans: 'Inter', sans-serif;

/* Some elements are stubborn so we need to force the color there */
--txt-colour: var(--colour-ti-base);
Expand Down
2 changes: 1 addition & 1 deletion src/components/BaseButton.vue
Original file line number Diff line number Diff line change
Expand Up @@ -105,7 +105,7 @@ button:hover > .tooltip {

border: 0;
border-radius: var(--border-radius);
font-family: 'Inter', 'sans-serif';
font-family: 'Inter', sans-serif;
font-size: var(--txt-input); /* 14px */
font-weight: 400;
line-height: 1;
Expand Down
2 changes: 1 addition & 1 deletion src/components/BubbleSelect.vue
Original file line number Diff line number Diff line change
Expand Up @@ -123,7 +123,7 @@ defineExpose({ reset });
flex-direction: column;
gap: 0.5rem;
color: var(--colour-ti-secondary);
font-family: 'Inter', 'sans-serif';
font-family: 'Inter', sans-serif;
font-size: 1rem;
line-height: var(--line-height-input);
font-weight: 400;
Expand Down
4 changes: 2 additions & 2 deletions src/components/ModalDialog.vue
Original file line number Diff line number Diff line change
Expand Up @@ -207,7 +207,7 @@ body.modal-active {
text-decoration-line: none;
padding-left: 0;
padding-right: 0;

&:hover {
text-decoration-line: underline;
}
Expand All @@ -217,7 +217,7 @@ body.modal-active {
/* Default styling for #title */
:deep(#title) {
color: var(--colour-ti-base);
font-family: 'Inter', 'sans-serif';
font-family: 'Inter', sans-serif;
font-weight: 400;
font-size: 1.375rem;
line-height: 1.664rem;
Expand Down
2 changes: 1 addition & 1 deletion src/components/SegmentedControl.vue
Original file line number Diff line number Diff line change
Expand Up @@ -74,7 +74,7 @@ const setOption = (option: SelectOption<string | number>) => {
flex-direction: column;
gap: 0.5rem;
color: var(--colour-ti-secondary);
font-family: 'Inter', 'sans-serif';
font-family: 'Inter', sans-serif;
font-size: 1rem;
line-height: var(--line-height-input);
font-weight: 400;
Expand Down
2 changes: 1 addition & 1 deletion src/components/SyncCard.vue
Original file line number Diff line number Diff line change
Expand Up @@ -64,7 +64,7 @@ withDefaults(defineProps<Props>(), {
border-radius: 0.5625rem;
border: 0.0625rem solid var(--colour-neutral-border);
background: var(--colour-neutral-base);
font-family: 'Inter', 'sans-serif';
font-family: 'Inter', sans-serif;
font-size: var(--txt-input);
color: var(--colour-ti-base);
}
Expand Down
Loading