Skip to content

Commit

Permalink
fix: ui
Browse files Browse the repository at this point in the history
  • Loading branch information
Lokuyow committed Nov 28, 2023
1 parent 6125e26 commit e9deb2f
Show file tree
Hide file tree
Showing 2 changed files with 8 additions and 8 deletions.
14 changes: 7 additions & 7 deletions styles.css
Original file line number Diff line number Diff line change
Expand Up @@ -34,17 +34,13 @@ button {
}

svg {
fill: var(--main-text-color);
fill: var(--svg-color);
}

svg#b {
fill: var(--invalid-color);
}

svg#c {
fill: var(--main-bg-color);
}

button>* {
pointer-events: none;
}
Expand Down Expand Up @@ -590,7 +586,8 @@ input:checked+.slider:before {
:root {
--two-color: var(--accent-color);
--input-text-color: #000000;
--main-text-color: #4D4D4D;
--main-text-color: #3D3D3D;
--svg-color: #525252;
--subject-text-color: #666666;
--main-bg-color: #FFFFFF;
--sub-bg-color: #EDEFF0;
Expand All @@ -603,6 +600,7 @@ input:checked+.slider:before {
--two-color: var(--base-color);
--input-text-color: #FFFFFF;
--main-text-color: #E6E6E6;
--svg-color: #F0F0F0;
--subject-text-color: #BFBFBF;
--main-bg-color: #1F1F1F;
--sub-bg-color: #333333;
Expand All @@ -617,6 +615,7 @@ input:checked+.slider:before {
--two-color: var(--base-color);
--input-text-color: #FFFFFF;
--main-text-color: #E6E6E6;
--svg-color: #F0F0F0;
--subject-text-color: #BFBFBF;
--main-bg-color: #1F1F1F;
--sub-bg-color: #333333;
Expand All @@ -628,7 +627,8 @@ input:checked+.slider:before {
:root[data-theme="light"] {
--two-color: var(--accent-color);
--input-text-color: #000000;
--main-text-color: #4D4D4D;
--main-text-color: #3D3D3D;
--svg-color: #525252;
--subject-text-color: #666666;
--main-bg-color: #FFFFFF;
--sub-bg-color: #EDEFF0;
Expand Down
2 changes: 1 addition & 1 deletion sw.js
Original file line number Diff line number Diff line change
Expand Up @@ -31,7 +31,7 @@ const urlsToCache = [
'./images/angle-down-solid.svg'
];

const VERSION = '1.40.3';
const VERSION = '1.40.4';
let CACHE_NAME = 'sats-rate-caches-' + VERSION;
const MY_CACHES = new Set([CACHE_NAME]);

Expand Down

0 comments on commit e9deb2f

Please sign in to comment.