30 lines
815 B
SCSS
30 lines
815 B
SCSS
/*
|
|
* App Global CSS
|
|
* ----------------------------------------------------------------------------
|
|
* Put style rules here that you want to apply globally. These styles are for
|
|
* the entire app and not just one component.
|
|
*/
|
|
|
|
@import url('https://fonts.googleapis.com/css2?family=Noto+Sans+HK:wght@100..900&family=Noto+Sans+JP:wght@100..900&family=Noto+Sans+SC:wght@100..900&display=swap');
|
|
|
|
.noto-sans-hk-body {
|
|
font-family: 'Noto Sans HK', sans-serif;
|
|
font-optical-sizing: auto;
|
|
font-weight: unset;
|
|
font-style: normal;
|
|
}
|
|
|
|
.noto-sans-sc-body {
|
|
font-family: 'Noto Sans SC', sans-serif;
|
|
font-optical-sizing: auto;
|
|
font-weight: unset;
|
|
font-style: normal;
|
|
}
|
|
|
|
.noto-sans-jp-body {
|
|
font-family: 'Noto Sans JP', sans-serif;
|
|
font-optical-sizing: auto;
|
|
font-weight: unset;
|
|
font-style: normal;
|
|
}
|