-
Notifications
You must be signed in to change notification settings - Fork 43
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
feat(Overview): refactor Rsdoctor Overview UI #625
base: main
Are you sure you want to change the base?
Conversation
✅ Deploy Preview for rsdoctor ready!
To edit notification comments on pull requests, go to your Netlify site configuration. |
target: 'es2020', | ||
outDir: './dist', | ||
dts: { | ||
abortOnError: false, |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Why disable abortOnError
here
|
||
.description { | ||
margin-right: 5px; | ||
font-family: PingFang SC; |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Usually we use multiple fonts in font-family because different operating systems have different built-in fonts.
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
I recommend using the global font-family for most elements. Only override font-family for code block or special numbers.
import TotalSizeSvg from '../../common/svg/total-size.svg'; | ||
import VersionSvg from '../../common/svg/version.svg'; | ||
|
||
import { Rule } from '@rsdoctor/types'; |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
import { Rule } from '@rsdoctor/types'; | |
import type { Rule } from '@rsdoctor/types'; |
Summary
Rsdoctor Overview UI refactor
Before:
After: