diff --git a/website/client/src/components/tasks/modal-controls/selectDifficulty.vue b/website/client/src/components/tasks/modal-controls/selectDifficulty.vue
index 1dfc16c3c4..019ccdc544 100644
--- a/website/client/src/components/tasks/modal-controls/selectDifficulty.vue
+++ b/website/client/src/components/tasks/modal-controls/selectDifficulty.vue
@@ -2,7 +2,6 @@
-
+
- @import '~@/assets/scss/colors.scss';
+@import '~@/assets/scss/colors.scss';
- .select-list ::v-deep {
- .dropdown-toggle {
- white-space: nowrap;
- overflow: hidden;
- text-overflow: ellipsis;
- padding-right: 25px; /* To allow enough room for the down arrow to be displayed */
+.select-list ::v-deep {
+ .dropdown-toggle {
+ white-space: nowrap;
+ overflow: hidden;
+ text-overflow: ellipsis;
+ padding-right: 25px; /* To allow enough room for the down arrow to be displayed */
+ }
+
+ .selectListItem {
+ position: relative;
+
+ .dropdown-item {
+ display: flex;
+ align-items: center;
+ justify-content: space-between;
}
- .selectListItem {
- position: relative;
-
- .dropdown-item {
- display: flex;
- align-items: center;
- justify-content: space-between;
+ &:not(.showIcon) {
+ .svg-icon.check-icon {
+ display: none;
}
+ }
- &:not(.showIcon) {
- .svg-icon.check-icon {
- display: none;
- }
- }
-
- .svg-icon.check-icon.color {
- margin-left: 10px; /* So the flex item (checkmark) will have some spacing from the text */
- width: 0.77rem;
- height: 0.615rem;
- color: $purple-300;
- }
+ .svg-icon.check-icon.color {
+ margin-left: 10px; /* So the flex item (checkmark) will have some spacing from the text */
+ width: 0.77rem;
+ height: 0.615rem;
+ color: $purple-300;
}
}
+}