diff --git a/app/app.vue b/app/app.vue
index 3203888..1973ede 100644
--- a/app/app.vue
+++ b/app/app.vue
@@ -13,6 +13,7 @@
body {
background-color: var(--color-primary);
font-family: var(--font-body), serif;
+ color: var(--color-surface);
}
.content {
diff --git a/app/assets/css/variables.css b/app/assets/css/variables.css
index 0bc9256..381fe95 100644
--- a/app/assets/css/variables.css
+++ b/app/assets/css/variables.css
@@ -1,14 +1,16 @@
:root {
- --color-primary: #f5f5f5;
+ --color-primary: #0a439e;
--color-surface: #fff;
--font-body: 'Ubuntu', serif;
--result-background: #c4c1d2;
- --panel-background: #f5f5f5;
- --card-background: #c4c1d2;
+ --card-background: #575757;
+ --panel-background: var(--card-background);
--color-button-primary: #4caf50;
--color-button-warning: #f59e0b;
--color-button-danger: #fb3b3b;
--color-action-button-text: #fff;
- --color-success-text: #4caf50;
+ --color-list-item-hover: #0058bd;
+ --color-success-text: #4caf50p;
--color-error-text: #fb3b3b;
+ --color-movie-background: #453e3e;
}
\ No newline at end of file
diff --git a/app/components/movie-list.vue b/app/components/movie-list.vue
index 4dd50a6..016d535 100644
--- a/app/components/movie-list.vue
+++ b/app/components/movie-list.vue
@@ -28,6 +28,7 @@ const sortMovies = (movies: Movie[]): Movie[] => {
if (!currentSort.value) return movies;
const {field, direction} = currentSort.value;
+ console.log(movies)
return [...movies].sort((a, b) => {
const aVal = a[field];
const bVal = b[field];
@@ -122,7 +123,7 @@ const isSortActive = (field: SortField, direction: SortDirection): boolean => {
-