Skip to content

Commit

Permalink
feat: add color
Browse files Browse the repository at this point in the history
  • Loading branch information
Angular2Guy committed Dec 10, 2023
1 parent b562f58 commit d9501b2
Show file tree
Hide file tree
Showing 2 changed files with 5 additions and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -41,7 +41,7 @@
</div>
}
@if(requestFailed) {
<h2 i18n="@@docSearchRequestFailed">Ai Request Failed. Please try again.</h2>
<h2 class="error-msg" i18n="@@docSearchRequestFailed">Ai Request Failed. Please try again.</h2>
}
@for(searchResultStr of searchResult?.resultStrings; track searchResult?.resultStrings) {
<div>
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -66,6 +66,10 @@
}
}

.error-msg {
color: #ff0000;
}

@media (max-width: 900px), (max-height: 480px) {
.custom-toolbar {
height: fit-content;
Expand Down

0 comments on commit d9501b2

Please sign in to comment.