Skip to content

Commit

Permalink
fix: normalize font-family
Browse files Browse the repository at this point in the history
  • Loading branch information
linxin committed Aug 6, 2024
1 parent 0776d2c commit dbaf1d6
Showing 1 changed file with 4 additions and 5 deletions.
9 changes: 4 additions & 5 deletions styles/globals.scss
Original file line number Diff line number Diff line change
Expand Up @@ -18,9 +18,12 @@ html:not([lang='en']) {
@apply max-w-[1920px] mx-auto;
}
html {
font-family: PingFang SC;
overflow-x: hidden;
}
html,
body {
font-family: ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Ubuntu, 'Helvetica Neue', Arial, 'Noto Sans', sans-serif, 'Apple Color Emoji', 'Segoe UI Emoji', 'Segoe UI Symbol', 'Noto Color Emoji';
}

* {
&::-webkit-scrollbar {
Expand All @@ -44,10 +47,6 @@ html {
.bg-brand_color {
background-color: var(--brand_color);
}
html {
font-family: PingFang SC;
}

.ant-carousel .slick-dots li button {
background: #000000;
opacity: 0.2;
Expand Down

0 comments on commit dbaf1d6

Please sign in to comment.