Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Original file line number Diff line number Diff line change
Expand Up @@ -24,12 +24,12 @@
</div>
{{#if isOpen}}
{{#each section.contents as |content|}}
<div class="row no-gutters justify-content-between align-items-center py-3">
<div class="row no-gutters justify-content-between align-items-center py-2 flex-nowrap">
<LinkTo
class="white content-row {{content.iconClass}} {{if (eq activeContentId content.id) "gradient-text-orange"}}"
@route="attempt.content"
@models={{array section.id content.id}}>
<span class="normal">{{content.title}} </span>
<span class="normal w-100">{{content.title}} </span>
</LinkTo>
{{#if content.isDone}}
<FaIcon @icon="check" class="gradient-text-green" />
Expand Down
9 changes: 7 additions & 2 deletions app/styles/components/player.scss
Original file line number Diff line number Diff line change
Expand Up @@ -7,11 +7,16 @@
display: inline-block;
height: 25px;
width: 25px;
margin-right: 1rem;
background-size: cover;
margin-right: 0.5rem;
background-size: contain;
background-repeat: no-repeat;
}

span.normal {
word-break: break-word;
margin-right: 0.5rem;
}

&.quiz-row::before {
background-image: url('https://minio.codingblocks.com/amoeba/quiz_grey.svg');
}
Expand Down