diff --git a/website/client/src/assets/scss/task.scss b/website/client/src/assets/scss/task.scss index 58fe728643..f84fcf86c7 100644 --- a/website/client/src/assets/scss/task.scss +++ b/website/client/src/assets/scss/task.scss @@ -323,7 +323,7 @@ background: $gray-600; .task-title, .task-notes { - color: $gray-300 !important; + opacity: 0.75; } } } diff --git a/website/client/src/components/tasks/approvalFooter.vue b/website/client/src/components/tasks/approvalFooter.vue index 5ecf95a477..efcc458b35 100644 --- a/website/client/src/components/tasks/approvalFooter.vue +++ b/website/client/src/components/tasks/approvalFooter.vue @@ -136,8 +136,8 @@ @import '~@/assets/scss/colors.scss'; .claim-bottom-message { background-color: $gray-600; - border-bottom-left-radius: 2px; - border-bottom-right-radius: 2px; + border-bottom-left-radius: 4px; + border-bottom-right-radius: 4px; font-size: 12px; padding-bottom: 0.25rem; padding-top: 0.25rem; diff --git a/website/client/src/components/tasks/task.vue b/website/client/src/components/tasks/task.vue index 4f98c775a5..a9bf729ba5 100644 --- a/website/client/src/components/tasks/task.vue +++ b/website/client/src/components/tasks/task.vue @@ -397,7 +397,7 @@ border: $purple-400 solid 1px; :not(task-best-control-inner-habit) { // round icon - border-radius: 2px; + border-radius: 4px; } } @@ -419,7 +419,7 @@ margin-bottom: 2px; box-shadow: 0 2px 2px 0 rgba($black, 0.16), 0 1px 4px 0 rgba($black, 0.12); background: white; - border-radius: 2px; + border-radius: 4px; position: relative; &:hover:not(.task-not-editable), @@ -442,7 +442,7 @@ &:hover:not(.task-not-editable), &:focus-within:not(.task-not-editable) { border: $purple-400 solid 1px; - border-radius: 3px; + border-radius: 5px; margin: -1px; // to counter the border width margin-bottom: 1px; transition: none; // with transition, the border color switches from black to $purple-400 @@ -488,7 +488,7 @@ } &:focus { - border-radius: 2px; + border-radius: 4px; border: $purple-400 solid 1px; } } @@ -602,8 +602,8 @@ } &.reward-content { - border-top-left-radius: 2px; - border-bottom-left-radius: 2px; + border-top-left-radius: 4px; + border-bottom-left-radius: 4px; } } @@ -766,8 +766,8 @@ } } .left-control { - border-top-left-radius: 2px; - border-bottom-left-radius: 2px; + border-top-left-radius: 4px; + border-bottom-left-radius: 4px; min-height: 60px; border: 1px solid transparent; border-right: none; @@ -779,15 +779,15 @@ .task:not(.type_habit) { .left-control { & + .task-content { - border-top-right-radius: 2px; - border-bottom-right-radius: 2px; + border-top-right-radius: 4px; + border-bottom-right-radius: 4px; } } } .right-control { - border-top-right-radius: 2px; - border-bottom-right-radius: 2px; + border-top-right-radius: 4px; + border-bottom-right-radius: 4px; min-height: 56px; border: 1px solid transparent; border-left: none;