Style update banner correctly

This commit is contained in:
2025-12-27 18:29:23 +00:00
parent 8bf33e2d45
commit b5241a2a42
5 changed files with 10 additions and 8 deletions

View File

@@ -77,7 +77,8 @@
} }
.black .update-banner { .black .update-banner {
color: #000; background-color: #333;
color: #ddd;
} }
.black .update-banner button { .black .update-banner button {

View File

@@ -73,7 +73,8 @@
} }
.dark .update-banner { .dark .update-banner {
color: #000; background-color: #333;
color: #ddd;
} }
.dark .update-banner button { .dark .update-banner button {

View File

@@ -44,10 +44,9 @@ input {
} }
.update-banner { .update-banner {
background-color: #ffffcc; background-color: #ddd;
padding: 0.75rem; padding: 0.75rem;
text-align: center; text-align: center;
border-bottom: 1px solid #e6e6b8;
} }
.update-banner button { .update-banner button {

View File

@@ -95,13 +95,12 @@
} }
.red .update-banner { .red .update-banner {
background-color: #ffdddd; background-color: #300;
border-bottom-color: #e6c2c2; color: #d00;
color: #b00;
} }
.red .update-banner button { .red .update-banner button {
background-color: #440000; background-color: #440000;
border-color: #b00; border-color: #b00;
color: #b00; color: #d00;
} }

View File

@@ -3,6 +3,8 @@ import ReactDOM from 'react-dom';
import App from './App'; import App from './App';
import * as serviceWorker from './serviceWorker'; import * as serviceWorker from './serviceWorker';
// version 3
ReactDOM.render(<App />, document.getElementById('root')); ReactDOM.render(<App />, document.getElementById('root'));
// If you want your app to work offline and load faster, you can change // If you want your app to work offline and load faster, you can change