Add font fallbacks (#341)

This commit is contained in:
Gimbles 2023-07-08 00:50:18 +05:30 committed by GitHub
parent 9450278680
commit bb3877998a
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -1,9 +1,9 @@
// Replace this with your own font imports!
@import url('https://fonts.googleapis.com/css2?family=Fira+Code:wght@400;700&family=Inter:wght@400;600;700&family=Source+Sans+Pro:wght@400;600&display=swap');
:root {
--font-body: "Source Sans Pro";
--font-header: "Inter";
--font-mono: "Fira Code"
--font-body: "Source Sans Pro", sans-serif;
--font-header: "Inter", sans-serif;
--font-mono: "Fira Code", monospace;
}
// typography