changed sans font to roboto (#895)
parent
e83980a999
commit
fdd4bd2e14
|
@ -24,6 +24,9 @@
|
||||||
@apply rounded-sm focus:ring-primary-500 focus:border-primary-500 h-auto py-0.5 my-0.5;
|
@apply rounded-sm focus:ring-primary-500 focus:border-primary-500 h-auto py-0.5 my-0.5;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
/* Roboto */
|
||||||
|
@import url("https://fonts.googleapis.com/css2?family=Roboto:wght@100;300;400;500;700;900&display=swap");
|
||||||
|
|
||||||
/* Cal Sans */
|
/* Cal Sans */
|
||||||
@font-face {
|
@font-face {
|
||||||
font-family: "Cal Sans";
|
font-family: "Cal Sans";
|
||||||
|
|
|
@ -7,6 +7,9 @@ module.exports = {
|
||||||
],
|
],
|
||||||
darkMode: "class",
|
darkMode: "class",
|
||||||
theme: {
|
theme: {
|
||||||
|
fontFamily: {
|
||||||
|
sans: ["Roboto", "sans-serif"],
|
||||||
|
},
|
||||||
extend: {
|
extend: {
|
||||||
colors: {
|
colors: {
|
||||||
black: "#111111",
|
black: "#111111",
|
||||||
|
@ -96,7 +99,6 @@ module.exports = {
|
||||||
},
|
},
|
||||||
},
|
},
|
||||||
fontFamily: {
|
fontFamily: {
|
||||||
inter: ["Inter", "sans-serif"],
|
|
||||||
cal: ["Cal Sans", "sans-serif"],
|
cal: ["Cal Sans", "sans-serif"],
|
||||||
},
|
},
|
||||||
maxHeight: (theme) => ({
|
maxHeight: (theme) => ({
|
||||||
|
|
Loading…
Reference in New Issue