Skip to content

Commit

Permalink
moved component-specific styles to their respective files
Browse files Browse the repository at this point in the history
  • Loading branch information
michaelchadwick committed Aug 20, 2024
1 parent 0ffca6b commit 3f09ad8
Show file tree
Hide file tree
Showing 4 changed files with 22 additions and 26 deletions.
Original file line number Diff line number Diff line change
@@ -1,5 +1,10 @@
@use "../../mixins" as m;
@use "../../colors" as c;

.course-objective-list {
@include m.objective-list;

.fade-text-control {
background-image: linear-gradient(to bottom, transparent, c.$white);
}
}
Original file line number Diff line number Diff line change
Expand Up @@ -16,29 +16,3 @@
position: relative;
}
}

.course-objective-list {
.fade-text-control {
background-image: linear-gradient(to bottom, transparent, c.$white);
}
}

.session-objective-list {
.fade-text-control {
background-image: linear-gradient(to bottom, transparent, c.$lightBlue);
}
}

.objective-sort-manager {
span {
&.draggable-object-content {
.fade-text-control {
background-image: linear-gradient(
to bottom,
transparent,
c.$culturedGrey
);
}
}
}
}
Original file line number Diff line number Diff line change
@@ -1,5 +1,10 @@
@use "../../mixins" as m;
@use "../../colors" as c;

.session-objective-list {
@include m.objective-list;

.fade-text-control {
background-image: linear-gradient(to bottom, transparent, c.$lightBlue);
}
}
Original file line number Diff line number Diff line change
Expand Up @@ -21,6 +21,18 @@

.content {
padding-top: 0.5rem;

span {
&.draggable-object-content {
.fade-text-control {
background-image: linear-gradient(
to bottom,
transparent,
c.$culturedGrey
);
}
}
}
}

.sortable-items {
Expand Down

0 comments on commit 3f09ad8

Please sign in to comment.