Skip to content

Commit

Permalink
change invite color in light mode
Browse files Browse the repository at this point in the history
  • Loading branch information
hrfee committed Dec 31, 2021
1 parent 277690e commit cf91ee6
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions ts/modules/invites.ts
Expand Up @@ -251,7 +251,7 @@ class DOMInvite implements Invite {

this._header = document.createElement('div') as HTMLDivElement;
this._container.appendChild(this._header);
this._header.classList.add("card", "~neutral", "@low", "inv-header", "elem-pad", "no-pad", "flex-expand", "row", "mt-2", "overflow-y");
this._header.classList.add("card", "~info", "dark:~d_neutral", "@low", "inv-header", "elem-pad", "no-pad", "flex-expand", "row", "mt-2", "overflow-y");

this._codeArea = document.createElement('div') as HTMLDivElement;
this._header.appendChild(this._codeArea);
Expand Down Expand Up @@ -425,7 +425,7 @@ export class inviteList implements inviteList {
this._list.classList.add("empty");
this._list.innerHTML = `
<div class="inv inv-empty">
<div class="card ~neutral @low inv-header flex-expand mt-2">
<div class="card ~info dark:~d_neutral @low inv-header flex-expand mt-2">
<div class="inv-codearea">
<span class="code monospace">${window.lang.strings("inviteNoInvites")}</span>
</div>
Expand Down

0 comments on commit cf91ee6

Please sign in to comment.