Skip to content

Commit

Permalink
Merge pull request #185 from gatewayapps/fix-dark-mode
Browse files Browse the repository at this point in the history
use an existing css variable for modal background
  • Loading branch information
johnmurphy01 authored Jul 14, 2022
2 parents 62387d6 + fe0d8ec commit 8a84b7f
Showing 1 changed file with 5 additions and 5 deletions.
10 changes: 5 additions & 5 deletions css/style.css
Original file line number Diff line number Diff line change
Expand Up @@ -189,15 +189,15 @@ a {
top: 50%;
left: 50%;
transform: translate(-50%, -50%);
background-color: var(--color-bg-canvas);
background-color: var(--color-workflow-card-bg);
-webkit-background-clip: padding-box;
background-clip: padding-box;
border: 1px solid var(--color-text-primary);
border: 1px solid var(--color-accent-fg);
border-radius: 6px;
outline: 0;
-webkit-box-shadow: 0 3px 9px var(--color-text-primary);
box-shadow: 0 3px 9px var(--color-text-primary);
color: var(--color-text-primary);
-webkit-box-shadow: 0 3px 9px var(--color-accent-fg);
box-shadow: 0 3px 9px var(--color-accent-fg);
color: var(--color-accent-fg);
}

.modal-header {
Expand Down

0 comments on commit 8a84b7f

Please sign in to comment.