Skip to content

Commit

Permalink
Update confirm-dialog.css
Browse files Browse the repository at this point in the history
  • Loading branch information
JeremyGamer13 committed Jan 17, 2024
1 parent 547f4ea commit e7bca73
Showing 1 changed file with 13 additions and 1 deletion.
14 changes: 13 additions & 1 deletion src/css/confirm-dialog.css
Original file line number Diff line number Diff line change
@@ -1,3 +1,5 @@
@import "../css/colors.css";

.base {
background-color: hsla(194, 100%, 50%, 0.5);
position: fixed;
Expand All @@ -8,11 +10,14 @@
align-items: center;
justify-content: center;
}
[theme="dark"] .base {
background-color: #333a;
}

.promptBox {
width: 540px;
height: 380px;
background-color: white;
background: $ui-white;
border-radius: 8px;
outline-color: hsla(0, 0%, 100%, 0.25);
outline-width: 4px;
Expand All @@ -21,6 +26,10 @@
position: relative;
color: black;
}
[theme="dark"] .promptBox {
color: $text-primary;
background: $ui-primary;
}

.header {
width: 100%;
Expand All @@ -31,6 +40,9 @@
justify-content: center;
color: white;
}
[theme="dark"] .header {
background-color: $motion-primary-dark;
}

.buttonRow {
height: 2.125em;
Expand Down

0 comments on commit e7bca73

Please sign in to comment.