-
-
Notifications
You must be signed in to change notification settings - Fork 652
Contribute element container exceeds screen width on mobile #919 #959
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
Closed
Closed
Changes from 15 commits
Commits
Show all changes
23 commits
Select commit
Hold shift + click to select a range
f48dfa3
Contribute element container exceeds screen width on mobile #919
srinjoy933 1cc0d25
Merge branch 'main' into srinjoy933/issue--919
arkid15r 11259fc
updated changes for the issue#919
srinjoy933 77dcf10
updated#issue no.919
srinjoy933 542a6d4
Update MultiSearch.tsx
srinjoy933 3447639
Merge branch 'main' into srinjoy933/issue--919
srinjoy933 28a64de
UPDATED CHANGES FOR#ISSUE919
srinjoy933 a9a97dc
updated changes2 for #issue919
srinjoy933 b2fd994
Merge branch 'main' into srinjoy933/issue--919
srinjoy933 0bb9890
Update index.html
srinjoy933 1aa263a
Update MultiSearch.tsx
srinjoy933 9a765c6
Update MultiSearch.tsx
srinjoy933 5115f8a
Update MultiSearch.tsx
srinjoy933 d69aa8f
Update MultiSearch.tsx
srinjoy933 7de01de
Create eslint.config.mjs
srinjoy933 aa91fb5
Merge branch 'main' into srinjoy933/issue--919
srinjoy933 94497ea
Update MultiSearch.tsx
srinjoy933 1136d38
Update MultiSearch.tsx
srinjoy933 746a49a
Merge branch 'main' into srinjoy933/issue--919
srinjoy933 f3b5146
doneh
srinjoy933 e41246a
Merge branch 'main' into srinjoy933/issue--919
srinjoy933 896c04a
updated #919
srinjoy933 60f840b
further updates#issue-919
srinjoy933 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 |
|---|---|---|
| @@ -0,0 +1,15 @@ | ||
| import globals from "globals"; | ||
| import pluginJs from "@t/js"; | ||
| import tst from "typescript-t"; | ||
| import pluginReact from "t-plugin-react"; | ||
|
|
||
|
|
||
| /** @type {import('t').Linter.Config[]} */ | ||
| export default [ | ||
| {files: ["**/*.{js,mjs,cjs,ts,jsx,tsx}"]}, | ||
| {files: ["**/*.js"], languageOptions: {sourceType: "script"}}, | ||
| {languageOptions: { globals: globals.browser }}, | ||
| pluginJs.configs.recommended, | ||
| ...tst.configs.recommended, | ||
| pluginReact.configs.flat.recommended, | ||
| ]; |
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,46 +1,41 @@ | ||
| <!doctype html> | ||
| <!DOCTYPE html> | ||
| <html lang="en"> | ||
| <head> | ||
| <meta charset="UTF-8" /> | ||
| <meta name="viewport" content="width=device-width, initial-scale=1.0" /> | ||
| <link rel="icon" type="image/png" href="https://owasp.org/www--site-theme/favicon.ico" /> | ||
| <title>OWASP Nest</title> | ||
| <meta | ||
| name="description" | ||
| content="Your gateway to OWASP. Discover, engage, and help shape the future!" | ||
| /> | ||
| <meta | ||
| property="og:description" | ||
| content="Your gateway to OWASP. Discover, engage, and help shape the future!" | ||
| /> | ||
| <meta name="description" content="Your gateway to OWASP. Discover, engage, and help shape the future!" /> | ||
| <meta property="og:description" content="Your gateway to OWASP. Discover, engage, and help shape the future!" /> | ||
| <meta property="og:image:alt" content="OWASP Nest logo" /> | ||
| <meta property="og:image:height" content="630" /> | ||
| <meta property="og:image:type" content="image/png" /> | ||
| <meta property="og:image:width" content="1200" /> | ||
| <meta | ||
| property="og:image" | ||
| content="https://nest.owasp.org/img/owasp_icon_white_background.png" | ||
| /> | ||
| <meta property="og:image" content="https://nest.owasp.org/img/owasp_icon_white_background.png" /> | ||
| <meta property="og:locale" content="en_US" /> | ||
| <meta property="og:site_name" content="OWASP Nest" /> | ||
| <meta property="og:title" content="OWASP Nest" /> | ||
| <meta property="og:type" content="website" /> | ||
| <meta property="og:url" content="https://nest.owasp.org/" /> | ||
|
|
||
| <meta name="twitter:card" content="summary_large_image" /> | ||
| <meta | ||
| name="twitter:description" | ||
| content="Your gateway to OWASP. Discover, engage, and help shape the future!" | ||
| /> | ||
| <meta name="twitter:description" content="Your gateway to OWASP. Discover, engage, and help shape the future!" /> | ||
| <meta name="twitter:image:alt" content="OWASP Nest logo" /> | ||
| <meta | ||
| name="twitter:image" | ||
| content="https://nest.owasp.org/img/owasp_icon_white_background.png" | ||
| /> | ||
| <meta name="twitter:image" content="https://nest.owasp.org/img/owasp_icon_white_background.png" /> | ||
| <meta name="twitter:title" content="OWASP Nest" /> | ||
| </head> | ||
| <body> | ||
| <div id="root"></div> | ||
| <div id="root"> | ||
| <div class="container"> | ||
| <div class="section projects"> | ||
| <h2>Projects</h2> | ||
| <p>Details about projects...</p> | ||
| </div> | ||
| <div class="section contribute"> | ||
| <h2>Contribute</h2> | ||
| <p>Ways to contribute...</p> | ||
| </div> | ||
| </div> | ||
| </div> | ||
| <script type="module" src="/src/main.tsx"></script> | ||
| </body> | ||
| </html> |
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.
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.
I'm not sure I understand what's going on here at all.. 👀

This is how the page looks now: