From 503349d9d5a22721be3e71a06206781085b4e8c0 Mon Sep 17 00:00:00 2001 From: Jaroslav Drzik Date: Sun, 21 Jan 2024 10:17:20 +0100 Subject: [PATCH] Fix color, sort order --- resources/js/Pages/IkeaRoot.vue | 15 ++++++--------- resources/views/app.blade.php | 1 + 2 files changed, 7 insertions(+), 9 deletions(-) diff --git a/resources/js/Pages/IkeaRoot.vue b/resources/js/Pages/IkeaRoot.vue index 6c40a51..6f968ba 100644 --- a/resources/js/Pages/IkeaRoot.vue +++ b/resources/js/Pages/IkeaRoot.vue @@ -384,7 +384,7 @@ watch(ccodes, (codes) => { Results for {{ itemCode }}
- + @@ -397,7 +397,7 @@ watch(ccodes, (codes) => { Countries in which compare
-
@@ -405,7 +405,7 @@ watch(ccodes, (codes) => { Country in which search product
-
@@ -507,12 +507,9 @@ watch(ccodes, (codes) => { width: 128px; } -.result-country { - --easy-table-body-row-background-color: yellow !important; -} - -.even-row .result-country { - --easy-table-body-row-background-color: yellow !important; +:root .result-country { + --easy-table-body-row-background-color: yellow; + --easy-table-body-even-row-background-color: yellow; } diff --git a/resources/views/app.blade.php b/resources/views/app.blade.php index 05696ea..102b4a4 100644 --- a/resources/views/app.blade.php +++ b/resources/views/app.blade.php @@ -18,6 +18,7 @@ .gradient { background: linear-gradient(90deg, #d53369 0%, #daae51 100%); } + @routes @vite('resources/js/app.js')