-
Notifications
You must be signed in to change notification settings - Fork 138
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
fix(styles): Replace workspace styles with content classes #4011
Changes from all commits
8cee64f
91e5638
b596b2a
c6d2a9f
402c341
b783934
File filter
Filter by extension
Conversations
Jump to
Diff view
Diff view
There are no files selected for viewing
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -98,21 +98,21 @@ const MDXChildTemplate = ({ | |
{toc.length > 1 && ( | ||
<TableOfContents items={toc} /> | ||
)} | ||
<div className="ws-mdx-content"> | ||
<div> | ||
<div className={innerContentWrapperClass()}> | ||
{InlineAlerts} | ||
<Component /> | ||
{functionDocumentation.length > 0 && ( | ||
<React.Fragment> | ||
<AutoLinkHeader size="h2" className="ws-h2" id="functions"> | ||
<AutoLinkHeader size="h2" className="pf-v6-c-content--h2" id="functions"> | ||
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more.
|
||
Functions | ||
</AutoLinkHeader> | ||
<FunctionsTable functionDescriptions={functionDocumentation}/> | ||
</React.Fragment> | ||
)} | ||
{propsTitle && ( | ||
<React.Fragment> | ||
<AutoLinkHeader size="h2" className="ws-h2" id="props"> | ||
<AutoLinkHeader size="h2" className="pf-v6-c-content--h2" id="props"> | ||
{propsTitle} | ||
</AutoLinkHeader> | ||
{propComponents.map(component => ( | ||
|
@@ -128,7 +128,7 @@ const MDXChildTemplate = ({ | |
)} | ||
{cssPrefix.length > 0 && ( | ||
<React.Fragment> | ||
<AutoLinkHeader size="h2" className="ws-h2" id="css-variables"> | ||
<AutoLinkHeader size="h2" className="pf-v6-c-content--h2" id="css-variables"> | ||
{cssVarsTitle} | ||
</AutoLinkHeader> | ||
{cssPrefix.map((prefix, index) => ( | ||
|
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.
🏆