fix: rewrite patch to ensure hunk gets applied

This commit is contained in:
josselinonduty 2025-04-12 01:10:28 +09:00
parent 836419dd02
commit 74e8ff28b8
No known key found for this signature in database

View File

@ -1,26 +1,21 @@
From f95ca5f06f78592a6167379d9bf5a13191910838 Mon Sep 17 00:00:00 2001 From 6cbd417ecc4fbd278e24bb202671b13c93064d95 Mon Sep 17 00:00:00 2001
From: josselinonduty <contact@josselinonduty.fr> From: josselinonduty <contact@josselinonduty.fr>
Date: Sat, 12 Apr 2025 00:53:24 +0900 Date: Sat, 12 Apr 2025 01:08:14 +0900
Subject: [PATCH] feat: improve responsiveness for small devices Subject: [PATCH] feat: improve responsiveness on small devices
--- ---
build/index.html | 21 ++++++++++++++++++++- build/index.html | 9 +++++++++
build/main.js | 4 ++-- build/main.js | 4 ++--
2 files changed, 22 insertions(+), 3 deletions(-) 2 files changed, 11 insertions(+), 2 deletions(-)
diff --git a/build/index.html b/build/index.html diff --git a/build/index.html b/build/index.html
index 357ca43..0e14653 100644 index aa761a2..0e14653 100644
--- a/build/index.html --- a/build/index.html
+++ b/build/index.html +++ b/build/index.html
@@ -1 +1,20 @@ @@ -4,6 +4,15 @@
-<!doctype html><html><head><meta charset="utf-8"><title>Deezer</title><script defer="defer" src="./renderer.js"></script></head><body class="electron"><div id="dzr-app"></div></body></html> <meta charset="utf-8" />
\ No newline at end of file <title>Deezer</title>
+<!DOCTYPE html> <script defer="defer" src="./renderer.js"></script>
+<html>
+ <head>
+ <meta charset="utf-8" />
+ <title>Deezer</title>
+ <script defer="defer" src="./renderer.js"></script>
+ <style> + <style>
+ body { + body {
+ overflow-x: auto !important; + overflow-x: auto !important;
@ -30,11 +25,9 @@ index 357ca43..0e14653 100644
+ min-width: 0px !important; + min-width: 0px !important;
+ } + }
+ </style> + </style>
+ </head> </head>
+ <body class="electron"> <body class="electron">
+ <div id="dzr-app"></div> <div id="dzr-app"></div>
+ </body>
+</html>
diff --git a/build/main.js b/build/main.js diff --git a/build/main.js b/build/main.js
index e3f2b78..d9e3185 100644 index e3f2b78..d9e3185 100644
--- a/build/main.js --- a/build/main.js