Skip to content

Commit c87a66c

Browse files
committed
fix: styles
1 parent 2d85a3c commit c87a66c

File tree

3 files changed

+7
-3
lines changed

3 files changed

+7
-3
lines changed

src/shared/components/SubmissionPage/FilestackFilePicker/index.jsx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -177,7 +177,7 @@ class FilestackFilePicker extends React.Component {
177177
</p>
178178
</div>
179179
<div
180-
styleName={`file-picker ${error ? 'error' : ''} ${dragged ? 'drag' : ''}`}
180+
styleName={`file-picker ${error ? 'error' : ''} ${dragged ? 'drag' : ''} ${isChallengeBelongToTopgearGroup ? 'topgear' : ''}`}
181181
>
182182
{
183183
!fileName && !isChallengeBelongToTopgearGroup && (

src/shared/components/SubmissionPage/FilestackFilePicker/styles.scss

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -25,6 +25,10 @@
2525
position: relative;
2626
justify-content: space-around;
2727

28+
&.topgear {
29+
justify-content: flex-start;
30+
}
31+
2832
@include xs-to-sm {
2933
min-height: 150px;
3034
justify-content: space-between;

src/shared/components/SubmissionPage/Submit/index.jsx

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -200,8 +200,8 @@ class Submit extends React.Component {
200200
: `Please follow the instructions on the Challenge Details page regarding
201201
what your submission should contain and how it should be organized.`;
202202
const troubleInstruction = isChallengeBelongToTopgearGroup
203-
? `If you are having trouble uploading your file, please raise a Service
204-
Now (SNOW) ticket under the TopGear category.`
203+
? `If you are having trouble with the submission or have any queries, please raise a Service
204+
Now (SNOW) ticket under the TopGear category.`
205205
: (
206206
<span>
207207
If you are having trouble uploading your file, please send your submission

0 commit comments

Comments
 (0)