-
Notifications
You must be signed in to change notification settings - Fork 21
[PROD RELEASE] - Profile app fixes & sys-admin tweaks #1463
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
Merged
Changes from all commits
Commits
Show all changes
12 commits
Select commit
Hold shift + click to select a range
9dfaad6
PM-3688 Fix onboarding bio-title payload
himaniraghav3 70a3488
clean up code
himaniraghav3 c543789
Revert to match api response
himaniraghav3 986a054
clean up unused function
himaniraghav3 9f755e7
clean console logs
himaniraghav3 60a3193
Merge pull request #1459 from topcoder-platform/PM-3532
himaniraghav3 b1fcf96
Better challenge details page to system-admin app (https://topcoder.a…
jmgasper 07f3ff1
Merge branch 'dev' of github.com:topcoder-platform/platform-ui into dev
jmgasper a3f68d8
Tweaks for challenge details page in system-admin app and fixes for p…
jmgasper 1424a17
PM-3532 Update redux on open to work step
himaniraghav3 e9d4d69
Add types
himaniraghav3 47d5585
Merge pull request #1460 from topcoder-platform/PM-3532
himaniraghav3 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
87 changes: 87 additions & 0 deletions
87
...apps/admin/src/challenge-management/ChallengeDetailsPage/ChallengeDetailsPage.module.scss
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,87 @@ | ||
| @import '@libs/ui/styles/includes'; | ||
|
|
||
| .container { | ||
| display: flex; | ||
| flex-direction: column; | ||
| gap: $sp-6; | ||
| } | ||
|
|
||
| .headerButtons { | ||
| display: flex; | ||
| flex-wrap: wrap; | ||
| gap: $sp-3; | ||
| justify-content: flex-end; | ||
| } | ||
|
|
||
| .section { | ||
| display: flex; | ||
| flex-direction: column; | ||
| gap: $sp-3; | ||
| } | ||
|
|
||
| .sectionTitle { | ||
| margin: 0; | ||
| font-size: 20px; | ||
| line-height: 28px; | ||
| font-weight: 600; | ||
| } | ||
|
|
||
| .statusRow { | ||
| display: flex; | ||
| align-items: flex-end; | ||
| flex-wrap: wrap; | ||
| gap: $sp-3; | ||
| } | ||
|
|
||
| .winnersList { | ||
| display: flex; | ||
| flex-direction: column; | ||
| gap: $sp-3; | ||
| } | ||
|
|
||
| .winnerRow { | ||
| display: flex; | ||
| align-items: flex-end; | ||
| flex-wrap: wrap; | ||
| gap: $sp-3; | ||
| } | ||
|
|
||
| .selectWrapper { | ||
| min-width: 360px; | ||
|
|
||
| :global(.input-el) { | ||
| margin-bottom: 0; | ||
| } | ||
| } | ||
|
|
||
| .sectionActions { | ||
| display: flex; | ||
| } | ||
|
|
||
| .apiResponse { | ||
| margin: 0; | ||
| max-height: 480px; | ||
| overflow: auto; | ||
| padding: $sp-4; | ||
| border: 1px solid #ddd; | ||
| border-radius: $sp-1; | ||
| background-color: #f7f7f7; | ||
| font-family: 'Courier New', Courier, monospace; | ||
| font-size: 12px; | ||
| line-height: 18px; | ||
| } | ||
|
|
||
| .loadingSpinnerContainer { | ||
| position: relative; | ||
| height: 100px; | ||
| margin-top: -30px; | ||
|
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. [ |
||
|
|
||
| .spinner { | ||
| background: none; | ||
| } | ||
| } | ||
|
|
||
| .noData { | ||
| margin: 0; | ||
| color: #555; | ||
| } | ||
Oops, something went wrong.
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.
[⚠️
design]The use of
min-width: 360px;for.selectWrappermight cause layout issues on smaller screens. Consider using a responsive approach to ensure better adaptability across different screen sizes.