Skip to content
This repository was archived by the owner on Mar 4, 2025. It is now read-only.

Commit 629fd2a

Browse files
committed
wrap content for smallest mobile sizes for no overflow
1 parent 4030764 commit 629fd2a

File tree

2 files changed

+4
-4
lines changed

2 files changed

+4
-4
lines changed

assets/css/directives/challenge-tile.scss

+3-2
Original file line numberDiff line numberDiff line change
@@ -410,7 +410,7 @@ challenge-tile .challenge.list-view {
410410
margin-bottom: 10px;
411411
padding: 20px 0;
412412
padding-left: 5px;
413-
height: 110px;
413+
min-height: 110px;
414414
border: 1px solid #E0E0E0;
415415
border-radius: 6px;
416416
box-shadow: 0 1px 3px rgba(0, 0, 0, .1);
@@ -612,7 +612,8 @@ challenge-tile .challenge.list-view {
612612
.completed-challenge {
613613
width: 100%;
614614
display: flex;
615-
flex-direction: row;
615+
flex-flow: row wrap;
616+
overflow: hidden;
616617
header {
617618
flex: 2;
618619
}

assets/css/directives/dev-challenge-user-place.scss

+1-2
Original file line numberDiff line numberDiff line change
@@ -109,8 +109,7 @@ dev-challenge-user-place {
109109
text-align: center;
110110
background-color: #F6F6F6;
111111
@media only screen and (max-width: 767px) {
112-
min-width: 50px;
113-
width: 50px;
112+
min-width: 84px;
114113
margin-left: 5px;
115114
}
116115

0 commit comments

Comments
 (0)