Skip to content

Commit b87ba0e

Browse files
committed
1 parent 2f1d2f9 commit b87ba0e

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

@@ -136,17 +136,17 @@
136136
.search-icon {
137137
cursor: pointer;
138138
display: inline-block;
139-
height: 100%;
140-
margin: 0 24px 0 6px;
139+
height: 32px;
140+
margin: 11px 4px 11px 6px;
141+
padding-left: 12px;
141142
position: relative;
143+
border-left: 1px solid $tc-gray-40;
142144
width: 36px;
143145

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

152152
/* TODO: This code for downward blue arrow is used also
@@ -166,8 +166,8 @@
166166
border-width: 6px 5px 0;
167167
border-color: $tc-dark-blue-90 transparent transparent transparent;
168168
position: absolute;
169-
bottom: 5px;
170-
left: 50%;
169+
left: 60%;
170+
bottom: -3px;
171171
margin-left: -6px;
172172
background-color: transparent;
173173
}
@@ -191,7 +191,7 @@
191191
position: relative;
192192
}
193193

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

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)