Skip to content

Commit

Permalink
bug(docs): Fix font weight 500 omission being a style rule
Browse files Browse the repository at this point in the history
  • Loading branch information
bnchrch committed May 16, 2024
1 parent 1bc850a commit e3ec635
Showing 1 changed file with 6 additions and 1 deletion.
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

0 comments on commit e3ec635

Please sign in to comment.