diff options
| author | Fuwn <[email protected]> | 2024-07-27 02:45:11 +0000 |
|---|---|---|
| committer | Fuwn <[email protected]> | 2024-07-27 02:54:35 +0000 |
| commit | bf7ce32021491ed7e052b8b0b614774942f4a53c (patch) | |
| tree | c252caec02cb1e0c38c401781da7bcfa26493a90 | |
| parent | refactor(page): move like constants to variables (diff) | |
| download | iptv-jp-browser-bf7ce32021491ed7e052b8b0b614774942f4a53c.tar.xz iptv-jp-browser-bf7ce32021491ed7e052b8b0b614774942f4a53c.zip | |
feat(page): update highlight colour
| -rw-r--r-- | src/routes/+page.svelte | 7 |
1 files changed, 6 insertions, 1 deletions
diff --git a/src/routes/+page.svelte b/src/routes/+page.svelte index d5351e9..9ef512f 100644 --- a/src/routes/+page.svelte +++ b/src/routes/+page.svelte @@ -75,7 +75,12 @@ } a:hover { - color: #2a6496; + color: #ffb600; + } + + ::selection { + background: #ffb600; + color: #fff; } .channels { |