Skip to content

Commit e5df60d

Browse files
fixed the alignment of the join video for mobile view (#9057)
Co-authored-by: Mario Behling <[email protected]>
1 parent 360284d commit e5df60d

File tree

2 files changed

+6
-1
lines changed

2 files changed

+6
-1
lines changed

app/components/public/session-item.hbs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,7 @@
99
{{@session.sessionType.name}}
1010
</div>
1111
</div>
12-
<div class="d-flex ml-auto" style="height: fit-content;">
12+
<div class="d-flex ml-auto mobile-help-buttons" style="height: fit-content;">
1313
{{#if this.sessionEnded}}
1414
{{#if @session.videoUrl}}
1515
<button class="ui basic {{text-color @session.track.color 'basic' 'inverted'}} button no-wrap" style={{css color=(text-color @session.track.color 'grey' 'lightgrey')}} {{action this.goToVideo}}>

app/styles/libs/_helpers.scss

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -60,6 +60,11 @@ $spacer-heights: 50 100 200 300 400 500 600 700 800 900;
6060
display: none !important;
6161
}
6262
}
63+
@media only screen and (max-width: 1152px) {
64+
.mobile-help-buttons {
65+
flex-wrap: wrap-reverse;
66+
}
67+
}
6368

6469
[data-ember-action] {
6570
&:not(:disabled) {

0 commit comments

Comments
 (0)