CE-740 make all h3 same size; update styles on recently-viewed

This commit is contained in:
2023-11-15 13:15:53 -06:00
parent c1065099e5
commit fbcee2b819
5 changed files with 26 additions and 8 deletions

View File

@ -78,6 +78,12 @@ interface Types
light: string;
main: string;
focus: string;
}
gray:
| {
light: string;
main: string;
focus: string;
}
| any;
primary: ColorsTypes | any;
@ -174,6 +180,11 @@ const colors: Types = {
focus: "#ffffff",
},
gray: {
main: "#757575",
focus: "#757575",
},
black: {
light: "#000000",
main: "#000000",

View File

@ -199,9 +199,10 @@ const typography: Types = {
},
h3: {
fontSize: pxToRem(30),
fontSize: "1.75rem",
lineHeight: 1.375,
...baseHeadingProperties,
fontWeight: 600
},
h4: {