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

Commit c33b4d4

Browse files
committed
wrap content for smallest mobile sizes for no overflow
1 parent 52f40f3 commit c33b4d4

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
@@ -393,7 +393,7 @@ challenge-tile .challenge.list-view {
393393
margin-bottom: 10px;
394394
padding: 20px 0;
395395
padding-left: 5px;
396-
height: 110px;
396+
min-height: 110px;
397397
border: 1px solid #E0E0E0;
398398
border-radius: 6px;
399399
box-shadow: 0 1px 3px rgba(0, 0, 0, .1);
@@ -578,7 +578,8 @@ challenge-tile .challenge.list-view {
578578
.completed-challenge {
579579
width: 100%;
580580
display: flex;
581-
flex-direction: row;
581+
flex-flow: row wrap;
582+
overflow: hidden;
582583
header {
583584
flex: 2;
584585
}

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)