Skip to content

Commit

Permalink
Right-aligning chips
Browse files Browse the repository at this point in the history
  • Loading branch information
dimitri-lopez committed Jul 19, 2022
1 parent c7dd3d8 commit 74040b9
Showing 1 changed file with 8 additions and 5 deletions.
13 changes: 8 additions & 5 deletions frontend/src/components/CourseTableCourse.vue
Original file line number Diff line number Diff line change
Expand Up @@ -20,8 +20,7 @@
color="primary"
value="primary"
hide-details
class="d-inline-block ma-0 float-right"
style="z-index: 99"
class="d-inline-block ma-0 float-right checkbox"
/>
{{ course.name }}
</h1>
Expand All @@ -31,7 +30,7 @@
/ {{ el }}
</label>
<CourseTableModifiers
class="mt-4 class-card__subtitle__modifiers"
class="mt-4 class-card__subtitle__modifiers float-right"
:class="{graphChange:graphView}"
:item="course"
/>
Expand Down Expand Up @@ -134,6 +133,10 @@ export default {
.v-tooltip__content {
opacity: 2.0;
}
.checkbox {
transform: scale(0.8);
transform-origin: top-left;
}
.class-card {
/* max-width: 700px; */
border-radius: 0;
Expand All @@ -154,8 +157,8 @@ export default {
display: block;
.class-card__subtitle__modifiers {
transform: scale(0.75);
transform-origin: bottom left;
transform: scale(0.90);
transform-origin: top right;
display: inline-block;
position: relative;
Expand Down

0 comments on commit 74040b9

Please sign in to comment.