Skip to content

Commit

Permalink
task: fix colors while processing images (#375)
Browse files Browse the repository at this point in the history
Change-Id: I7ac7a95ec9076ebf64038739c03156e54da1ffe3
  • Loading branch information
andi34 committed Nov 18, 2023
1 parent 326dd39 commit 2ad0802
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 2 deletions.
4 changes: 2 additions & 2 deletions src/js/core.js
Expand Up @@ -358,8 +358,8 @@ const photoBooth = (function () {
data.file = chromaFile;
}

loader.css('background', config.colors.panel);
loader.css('background-color', config.colors.panel);
loader.css('background', config.colors.background_countdown);
loader.css('background-color', config.colors.background_countdown);

api.callTakePicApi(data, retry);
};
Expand Down
1 change: 1 addition & 0 deletions src/sass/partials/_countdown.scss
Expand Up @@ -72,6 +72,7 @@
bottom: 1.5em;
left: 0;
z-index: 102;
color: var(--countdown-color);
font-size: 3.125em;
text-align: center;
width: 100%;
Expand Down

0 comments on commit 2ad0802

Please sign in to comment.