-
Notifications
You must be signed in to change notification settings - Fork 1.6k
feat: add broken link reporting workflow to 404 page #7843
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
Open
ananyaa0518
wants to merge
7
commits into
layer5io:master
Choose a base branch
from
ananyaa0518:master
base: master
Could not load branches
Branch not found: {{ refName }}
Loading
Could not load tags
Nothing to show
Loading
Are you sure you want to change the base?
Some commits from the old base branch may be removed from the timeline,
and old review comments may become outdated.
+84
−33
Open
Changes from 3 commits
Commits
Show all changes
7 commits
Select commit
Hold shift + click to select a range
1d06836
feat: add broken link reporting workflow to 404 page
ananyaa0518 8da5768
Merge branch 'master' into master
ananyaa0518 8932a44
Merge branch 'master' into master
ananyaa0518 be49a0f
Merge branch 'layer5io:master' into master
ananyaa0518 f730248
feat: update 404 page styling and enhance broken link reporting details
ananyaa0518 055d25d
Merge branch 'master' into master
Rajesh-Nagarajan-11 eb70808
fix: standardize 404 page action button sizing
ananyaa0518 File filter
Filter by extension
Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
There are no files selected for viewing
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| Original file line number | Diff line number | Diff line change |
|---|---|---|
| @@ -1,42 +1,46 @@ | ||
| import styled from "styled-components"; | ||
|
|
||
| const L404SectionWrapper = styled.section` | ||
| padding: 150px 0 100px 0; | ||
| position: relative; | ||
| overflow: hidden; | ||
| text-align: center; | ||
| padding: 150px 0 100px 0; | ||
| position: relative; | ||
| overflow: hidden; | ||
| text-align: center; | ||
|
|
||
| h1.message { | ||
| font-size: 2rem; | ||
| line-height: 2rem; | ||
| transition: 0.8s cubic-bezier(0.2, 0.8, 0.2, 1); | ||
| } | ||
| h2.subtitle { | ||
| font-weight: 400; | ||
| font-size: 1.5rem; | ||
| color: ${props => props.theme.greyDEE3DEToGrey363636}; | ||
| font-style: italic; | ||
| margin-top: 2.5rem; | ||
| transition: 0.8s cubic-bezier(0.2, 0.8, 0.2, 1); | ||
| h1.message { | ||
| font-size: 2rem; | ||
| line-height: 2rem; | ||
| transition: 0.8s cubic-bezier(0.2, 0.8, 0.2, 1); | ||
| } | ||
| h2.subtitle { | ||
| font-weight: 400; | ||
| font-size: 1.5rem; | ||
| color: ${(props) => props.theme.greyDEE3DEToGrey363636}; | ||
| font-style: italic; | ||
| margin-top: 2.5rem; | ||
| transition: 0.8s cubic-bezier(0.2, 0.8, 0.2, 1); | ||
| } | ||
| .button-row { | ||
| display: flex; | ||
| flex-direction: row; | ||
| justify-content: center; | ||
| gap: 1.5rem; | ||
| flex-wrap: wrap; | ||
| margin-top: 2.5rem; | ||
|
|
||
| img { | ||
| display: block; | ||
| margin: auto; | ||
| margin-top: 3.125rem; | ||
| max-width: 50%; | ||
| @media only screen and (max-width: 700px) { | ||
| max-width: 100%; | ||
| } | ||
| } | ||
| .button-row{ | ||
| display: flex; | ||
| flex-direction: column; | ||
| img{ | ||
| display:block; | ||
| margin:auto; | ||
| margin-top: 3.125rem; | ||
| max-width: 50%; | ||
| @media only screen and (max-width:700px){ | ||
| max-width: 100%; | ||
| } | ||
| } | ||
|
|
||
| button{ | ||
| margin-top: 2.5rem; | ||
| color: black; | ||
| } | ||
|
|
||
| button { | ||
| color: black; | ||
| } | ||
| } | ||
| `; | ||
|
|
||
| export default L404SectionWrapper; | ||
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.
Add this suggestion to a batch that can be applied as a single commit.
This suggestion is invalid because no changes were made to the code.
Suggestions cannot be applied while the pull request is closed.
Suggestions cannot be applied while viewing a subset of changes.
Only one suggestion per line can be applied in a batch.
Add this suggestion to a batch that can be applied as a single commit.
Applying suggestions on deleted lines is not supported.
You must change the existing code in this line in order to create a valid suggestion.
Outdated suggestions cannot be applied.
This suggestion has been applied or marked resolved.
Suggestions cannot be applied from pending reviews.
Suggestions cannot be applied on multi-line comments.
Suggestions cannot be applied while the pull request is queued to merge.
Suggestion cannot be applied right now. Please check back later.
Uh oh!
There was an error while loading. Please reload this page.