Skip to content

fix(PS-371): Submission page details section for topgear challenges #7086

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
merged 1 commit into from
Mar 31, 2025
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
Original file line number Diff line number Diff line change
Expand Up @@ -177,7 +177,7 @@ class FilestackFilePicker extends React.Component {
</p>
</div>
<div
styleName={`file-picker ${error ? 'error' : ''} ${dragged ? 'drag' : ''}`}
styleName={`file-picker ${error ? 'error' : ''} ${dragged ? 'drag' : ''} ${isChallengeBelongToTopgearGroup ? 'topgear' : ''}`}
>
{
!fileName && !isChallengeBelongToTopgearGroup && (
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -25,6 +25,10 @@
position: relative;
justify-content: space-around;

&.topgear {
justify-content: flex-start;
}

@include xs-to-sm {
min-height: 150px;
justify-content: space-between;
Expand Down
4 changes: 2 additions & 2 deletions src/shared/components/SubmissionPage/Submit/index.jsx
Original file line number Diff line number Diff line change
Expand Up @@ -200,8 +200,8 @@ class Submit extends React.Component {
: `Please follow the instructions on the Challenge Details page regarding
what your submission should contain and how it should be organized.`;
const troubleInstruction = isChallengeBelongToTopgearGroup
? `If you are having trouble uploading your file, please raise a Service
Now (SNOW) ticket under the TopGear category.`
? `If you are having trouble with the submission or have any queries, please raise a Service
Now (SNOW) ticket under the TopGear category.`
: (
<span>
If you are having trouble uploading your file, please send your submission
Expand Down