Skip to content
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

bug(docs): Fix font weight 500 omission being a style rule #38295

Merged
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
7 changes: 6 additions & 1 deletion docusaurus/src/css/custom.css
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@
* work well for content-centric websites.
*/

@import url("https://fonts.googleapis.com/css2?family=Inter:wght@200;300;400;600;700&display=swap");
@import url("https://fonts.googleapis.com/css2?family=Inter:wght@200;300;400;500;600;700&display=swap");

/* You can override the default Infima variables here. */
:root {
Expand Down Expand Up @@ -105,6 +105,7 @@ html[data-theme="dark"] .docusaurus-highlight-code-line {

.navbar .navbar__link {
color: var(--ifm-menu-color);
font-weight: var(--ifm-font-weight-normal);
}

.navbar .navbar__link:hover {
Expand Down Expand Up @@ -194,6 +195,10 @@ img {
display: none;
}

.menu__link {
font-weight: var(--ifm-font-weight-normal);
}

.menu__link--sublist-caret:after {
background: var(--ifm-menu-link-sublist-icon) 50%/2rem 2rem;
min-width: 1.25rem;
Expand Down
Loading