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

fix(404): fixes a link so that it doesn't go to 404, fix 404 styles #3117

Merged
merged 4 commits into from
Aug 30, 2022
Merged
Show file tree
Hide file tree
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
2 changes: 1 addition & 1 deletion src/pages/guidelines/2x-grid/implementation.mdx
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,7 @@ with five default breakpoints and dozens of predefined classes.
<InlineNotification>

If you’re using `@carbon/styles` or `@carbon/react` there’s no reason to install
the grid package separately. See our [get started](/get-started/develop/react)
the grid package separately. See our [get started](/developing/get-started/)
guide to start building.

</InlineNotification>
Expand Down
9 changes: 9 additions & 0 deletions src/styles/_overrides.scss
Original file line number Diff line number Diff line change
@@ -0,0 +1,9 @@
[class^='FourOhFour-module--container'] {
margin-top: 3rem;
}

[class^='FourOhFour-module--container'],
[class^='FourOhFour-module--link'],
[class^='FourOhFour-module--link']:before {
color: $text-inverse !important;
}
1 change: 1 addition & 0 deletions src/styles/index.scss
Original file line number Diff line number Diff line change
Expand Up @@ -9,6 +9,7 @@
@import 'structured-list';
@import 'plex-serif';
@import 'meetups';
@import 'overrides';

@import 'src/components/ColorBlock/color-block.scss';
@import 'src/components/ColorGrid/color-grid.scss';
Expand Down