use clearfix feature from bootstrap
This commit is contained in:
parent
c877da1161
commit
c02b30409b
4 changed files with 7 additions and 9 deletions
|
|
@ -6,7 +6,7 @@
|
|||
<div class="card-group mb-5">
|
||||
<div class="card niceborder" ng-repeat="(k,exercice) in themes[current_theme].exercices">
|
||||
<div class="card-body">
|
||||
<h5 class="card-title">
|
||||
<h5 class="card-title clearfix">
|
||||
<a ng-href="/{{ themes[current_theme].urlid }}/{{ themes[current_theme].exercices[k].urlid }}" ng-if="my.exercices[k]">
|
||||
{{ exercice.title }}
|
||||
</a>
|
||||
|
|
@ -18,6 +18,6 @@
|
|||
<span class="glyphicon glyphicon-ok" aria-hidden="true" ng-if="(my.team_id && my.exercices[k].solved)"></span>
|
||||
<span class="glyphicon glyphicon-gift" aria-hidden="true" ng-if="themes[current_theme].exercices[k].curcoeff > 1.0" title="Un bonus est actuellement appliqué lors de la résolution de ce défi"></span>
|
||||
</h5>
|
||||
<p style="clear: both" class="card-text text-justify" ng-bind-html="exercice.headline"></p>
|
||||
<p class="card-text text-justify" ng-bind-html="exercice.headline"></p>
|
||||
</div>
|
||||
</div>
|
||||
|
|
|
|||
Reference in a new issue