diff --git a/src/assets/images/tco19_logo_black.svg b/src/assets/images/tco19_logo_black.svg index f47126c6a4..26e54957e8 100644 --- a/src/assets/images/tco19_logo_black.svg +++ b/src/assets/images/tco19_logo_black.svg @@ -1,7 +1,7 @@ - 4B44DA3B-3D5C-451B-9F77-812298E66E52 + TCO19 Created with sketchtool. diff --git a/src/client/styles.scss b/src/client/styles.scss index 41ddcb7d3e..d66601079e 100644 --- a/src/client/styles.scss +++ b/src/client/styles.scss @@ -3,6 +3,6 @@ * the page by Topcoder accounts-app. */ #tc-accounts-iframe { border: none; - display: block; + display: none; } } diff --git a/src/shared/components/challenge-detail/Registrants/index.jsx b/src/shared/components/challenge-detail/Registrants/index.jsx index 9b82966747..24089333aa 100644 --- a/src/shared/components/challenge-detail/Registrants/index.jsx +++ b/src/shared/components/challenge-detail/Registrants/index.jsx @@ -99,12 +99,12 @@ Round 1 Submitted Date return (
-
- +
+ {r.handle}
-
+
Registration Date
@@ -113,7 +113,7 @@ Registration Date { twoRounds && ( -
+
Round 1 Submitted Date
@@ -129,7 +129,7 @@ Round 1 Submitted Date
) } -
+
{twoRounds ? 'Round 2 ' : ''} Submitted Date diff --git a/src/shared/components/challenge-detail/Specification/SideBar/index.jsx b/src/shared/components/challenge-detail/Specification/SideBar/index.jsx index acede5ae5e..a7b8870f32 100644 --- a/src/shared/components/challenge-detail/Specification/SideBar/index.jsx +++ b/src/shared/components/challenge-detail/Specification/SideBar/index.jsx @@ -108,7 +108,7 @@ Final Review: {reviewTypeTitle} - +
?
@@ -119,7 +119,7 @@ Approval: User Sign-Off - +
?
diff --git a/src/shared/components/challenge-listing/ChallengeCard/Prize/index.jsx b/src/shared/components/challenge-listing/ChallengeCard/Prize/index.jsx index 3e6c3aa8e5..f938ceaf8c 100644 --- a/src/shared/components/challenge-listing/ChallengeCard/Prize/index.jsx +++ b/src/shared/components/challenge-listing/ChallengeCard/Prize/index.jsx @@ -19,16 +19,16 @@ export default function Prize({ withoutTooltip, }) { const component = ( -
+
+
+ {label} +
{prizeUnitSymbol} {totalPrize.toLocaleString()}
-
- {label} -
); if (withoutTooltip) return component; diff --git a/src/shared/components/challenge-listing/ChallengeCard/Prize/style.scss b/src/shared/components/challenge-listing/ChallengeCard/Prize/style.scss index 1ed78522b6..f00cfee222 100644 --- a/src/shared/components/challenge-listing/ChallengeCard/Prize/style.scss +++ b/src/shared/components/challenge-listing/ChallengeCard/Prize/style.scss @@ -1,5 +1,10 @@ @import "~styles/mixins"; +.prize-wrapper { + display: flex; + flex-direction: column; +} + .label { cursor: default; padding: 0 (2 * $base-unit); @@ -7,6 +12,7 @@ font-size: 10px; color: $tc-gray-70; white-space: nowrap; + order: 2; @include xs-to-sm { display: inline-block;