diff --git a/frontend/src/app/objective/objective.component.html b/frontend/src/app/objective/objective.component.html index 047e5e7084..0d5058b9e7 100644 --- a/frontend/src/app/objective/objective.component.html +++ b/frontend/src/app/objective/objective.component.html @@ -14,7 +14,7 @@ matTooltip="The objectives state is {{ objective.value.state.split('-')[0] | uppercase }}" matTooltipPosition="above" data-testid="objective-state" - class="icon col-1 mt-2" + class="icon col-1 mt-1" [src]="'assets/icons/' + objective.value.state" />
{{ objective.value.title }}
diff --git a/frontend/src/app/objective/objective.component.scss b/frontend/src/app/objective/objective.component.scss index fc9d6a514f..eb5767d712 100644 --- a/frontend/src/app/objective/objective.component.scss +++ b/frontend/src/app/objective/objective.component.scss @@ -1,3 +1,5 @@ +@import "_variables"; + .objective { max-width: 750px; &:hover { @@ -15,3 +17,13 @@ border-radius: 1rem; background-color: lightgray; } + +.three-dot-menu { + color: $pz-dark-blue; + display: flex; + justify-content: center; + align-items: start; + padding-top: 0.2rem; + width: 35px; + height: 32px; +}