18 lines
335 B
SCSS
18 lines
335 B
SCSS
@use 'modules/config' as conf;
|
|
@charset "UTF-8";
|
|
|
|
* {
|
|
font-family: inherit;
|
|
}
|
|
|
|
body {
|
|
@include conf.ltr {
|
|
font-family: 'PingHei', 'PingFang SC', 'Helvetica Neue', 'Work Sans', 'Hiragino Sans GB', sans-serif;
|
|
font-size: 1.6rem;
|
|
}
|
|
|
|
@include conf.rtl {
|
|
font-family: 'Tajawal', sans-serif;
|
|
font-size: 1.5rem;
|
|
}
|
|
}
|