diff --git a/src/app/components/shared/comment-answer/comment-answer.component.scss b/src/app/components/shared/comment-answer/comment-answer.component.scss index 426c9ee713c6181eb9cb7b808f9627c09bf6218a..11e9cc805319258a6d883565e0d775480916d5ce 100644 --- a/src/app/components/shared/comment-answer/comment-answer.component.scss +++ b/src/app/components/shared/comment-answer/comment-answer.component.scss @@ -4,8 +4,8 @@ app-comment, mat-card { } .answer { - background-color: lightseagreen; - color: #eadabf; + background-color: var(--primary); + color: var(--on-primary); padding: 3% 3%; box-sizing: border-box; font-size: 16px; @@ -14,7 +14,8 @@ app-comment, mat-card { } .answer a { - color: #eadabf !important; + color: var(--on-primary) !important; + text-decoration: underline !important; } button { @@ -23,8 +24,8 @@ button { } .save { - background-color: var(--primary); - color: var(--on-primary); + background-color: var(--secondary); + color: var(--on-secondary); margin-right: 1%; }