Rework type scale according to latest designs

pull/10318/head
Thibaud Colas 2023-03-27 17:04:23 +01:00
rodzic e0f9014c91
commit 9f23b19b17
5 zmienionych plików z 7 dodań i 6 usunięć

Wyświetl plik

@ -121,7 +121,7 @@ $zindex-modal-background: 500;
.w-header__title {
color: inherit;
font-weight: 700;
font-size: 1.125rem;
font-size: theme('fontSize.19');
line-height: 130%;
}
}

Wyświetl plik

@ -38,7 +38,7 @@
}
.w-field__label {
@apply w-label-3;
@apply w-label-2;
display: block;
margin-bottom: 0;
}

Wyświetl plik

@ -13,7 +13,7 @@
}
label {
@apply w-label-3;
@apply w-body-text;
color: theme('colors.grey.600');
display: inline-flex;
align-items: center;

Wyświetl plik

@ -1,7 +1,7 @@
$draftail-editor-text: $color-input-text;
$draftail-placeholder-text: theme('colors.grey.400');
// w-body-text-large
$draftail-editor-font-size: theme('fontSize.18');
$draftail-editor-font-size: theme('fontSize.19');
$draftail-editor-line-height: theme('lineHeight.normal');
$draftail-editor-chrome: theme('colors.primary.DEFAULT');

Wyświetl plik

@ -76,6 +76,7 @@ const fontSize = {
15: '0.9375rem',
16: '1rem',
18: '1.125rem',
19: '1.1875rem',
22: '1.375rem',
24: '1.5rem',
26: '1.625rem',
@ -148,7 +149,7 @@ const typeScale = {
lineHeight: 'lineHeight.tight',
},
'w-label-2': {
fontSize: 'fontSize.15',
fontSize: 'fontSize.14',
fontWeight: 'fontWeight.semibold',
color: 'colors.primary.DEFAULT',
lineHeight: 'lineHeight.tight',
@ -160,7 +161,7 @@ const typeScale = {
lineHeight: 'lineHeight.tight',
},
'w-body-text-large': {
fontSize: 'fontSize.18',
fontSize: 'fontSize.19',
fontWeight: 'fontWeight.normal',
lineHeight: 'lineHeight.normal',
},