-
Notifications
You must be signed in to change notification settings - Fork 212
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #5464 from topcoder-platform/develop
Release 2021/04/05 (v1.8.4)
- Loading branch information
Showing
12 changed files
with
189 additions
and
32 deletions.
There are no files selected for viewing
This file contains 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
This file contains 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
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
This file contains 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
This file contains 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
18 changes: 18 additions & 0 deletions
18
src/shared/components/Contentful/Dropdown/themes/dark.scss
This file contains 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,18 @@ | ||
@import "~styles/mixins"; | ||
|
||
.container { | ||
padding: 0; | ||
|
||
@include xs-to-sm { | ||
padding: 0 15px; | ||
} | ||
} | ||
|
||
.contentWrapper { | ||
display: flex; | ||
margin: 0 auto; | ||
max-width: $screen-md; | ||
color: #fff; | ||
flex-direction: column; | ||
border-top: 1px solid rgba(212, 212, 212, 0.4); | ||
} |
This file contains 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
74 changes: 74 additions & 0 deletions
74
src/shared/components/Contentful/Dropdown/themes/item-dark.scss
This file contains 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,74 @@ | ||
@import "~styles/mixins"; | ||
@import "~components/Contentful/default"; | ||
|
||
.container { | ||
width: 100%; | ||
} | ||
|
||
.question, | ||
.question-active { | ||
display: flex; | ||
align-items: center; | ||
justify-content: space-between; | ||
height: 82px; | ||
outline: none; | ||
cursor: pointer; | ||
border-bottom: 1px solid rgba(212, 212, 212, 0.4); | ||
} | ||
|
||
.question-active { | ||
border-bottom: none; | ||
height: 81px; | ||
} | ||
|
||
.answer, | ||
.answer-active { | ||
@include gui-kit-content; | ||
@include gui-kit-headers; | ||
|
||
display: none; | ||
padding: 5px 70px 24px 0; | ||
color: #fff; | ||
|
||
@include xs-to-sm { | ||
padding-right: 0; | ||
} | ||
|
||
p { | ||
color: #fff; | ||
} | ||
} | ||
|
||
.answer-active { | ||
display: block; | ||
border-bottom: 1px solid rgba(212, 212, 212, 0.4); | ||
} | ||
|
||
.text { | ||
color: #fff; | ||
font-family: BarlowCondensed, sans-serif; | ||
font-size: 31px; | ||
letter-spacing: 0.2px; | ||
text-transform: uppercase; | ||
font-weight: 500; | ||
|
||
@include xs-to-sm { | ||
max-width: 350px; | ||
flex: 1; | ||
margin-right: 20px; | ||
font-size: 21px; | ||
} | ||
} | ||
|
||
.toggle-arrow, | ||
.toggle-arrow-active { | ||
background-image: url(assets/images/minimal-down-white.svg); | ||
background-repeat: no-repeat; | ||
align-self: right; | ||
width: 24px; | ||
height: 15px; | ||
} | ||
|
||
.toggle-arrow-active { | ||
transform: scale(1, -1); | ||
} |
This file contains 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
This file contains 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
This file contains 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.