Skip to content

Commit 6d5bf6d

Browse files
committed
1 parent 3beed47 commit 6d5bf6d

File tree

4 files changed

+18
-17
lines changed

4 files changed

+18
-17
lines changed

src/shared/components/TopcoderFooter/style.scss

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -47,7 +47,7 @@
4747
}
4848
}
4949

50-
@media only screen and (max-width: 1024px) {
50+
@include xxs-to-sm {
5151
.link {
5252
display: block;
5353
}

src/shared/components/TopcoderHeader/mobile/Header/style.scss

Lines changed: 5 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -55,8 +55,10 @@
5555
top: 16px;
5656
}
5757

58-
@media only screen and (min-width: 1024px) {
59-
.header-wrapper {
60-
display: none;
58+
.header-wrapper {
59+
display: none;
60+
61+
@include xxs-to-sm {
62+
display: block;
6163
}
6264
}

src/shared/components/TopcoderHeader/style.scss

Lines changed: 12 additions & 12 deletions
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@
33
.auth-buttons {
44
display: inline-block;
55
position: relative;
6-
top: -11px;
6+
top: -4px;
77

88
a {
99
border-radius: 2 * $corner-radius;
@@ -90,7 +90,7 @@
9090
.right-menu {
9191
height: 100%;
9292
position: absolute;
93-
right: 0;
93+
right: 20px;
9494
top: 0;
9595
}
9696

@@ -135,17 +135,17 @@
135135
.search-icon {
136136
cursor: pointer;
137137
display: inline-block;
138-
height: 100%;
139-
margin: 0 24px 0 6px;
138+
height: 32px;
139+
margin: 11px 4px 11px 6px;
140+
padding-left: 12px;
140141
position: relative;
142+
border-left: 1px solid $tc-gray-40;
141143
width: 36px;
142144

143145
svg {
144-
border-left: 1px solid $tc-gray-40;
145-
height: 32px;
146-
margin: 12px 0 0;
147-
padding: 0 0 0 12px;
148-
width: 32px;
146+
height: 18px;
147+
margin-top: 7px;
148+
width: 18px;
149149
}
150150

151151
/* TODO: This code for downward blue arrow is used also
@@ -165,8 +165,8 @@
165165
border-width: 6px 5px 0;
166166
border-color: $tc-dark-blue-90 transparent transparent transparent;
167167
position: absolute;
168-
bottom: 5px;
169-
left: 50%;
168+
left: 60%;
169+
bottom: -3px;
170170
margin-left: -6px;
171171
background-color: transparent;
172172
}
@@ -190,7 +190,7 @@
190190
position: relative;
191191
}
192192

193-
@media only screen and (max-width: 1024px) {
193+
@include xxs-to-sm {
194194
.auth-buttons {
195195
top: 16px;
196196
}

src/shared/components/challenge-listing/Filters/ChallengeSearchBar/style.scss

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -41,7 +41,6 @@ $search-input-width: '100% - 56px';
4141
font-weight: 300;
4242
font-size: 15px;
4343
color: $tc-gray-50;
44-
line-height: $challenge-space-30 + 5;
4544
text-transform: none;
4645
opacity: 1;
4746
}

0 commit comments

Comments
 (0)