waygo-maps 1.1.74 → 1.1.75
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/dist/style.css +5 -4
- package/package.json +1 -1
package/dist/style.css
CHANGED
|
@@ -2647,21 +2647,21 @@
|
|
|
2647
2647
|
width: 100%;
|
|
2648
2648
|
padding: 12px 16px;
|
|
2649
2649
|
margin: 12px 0;
|
|
2650
|
-
background-color: #fff
|
|
2650
|
+
background-color: #1e1e1e; /* Changed from #fff to dark color */
|
|
2651
2651
|
border: none;
|
|
2652
2652
|
border-radius: 20px;
|
|
2653
2653
|
cursor: pointer;
|
|
2654
2654
|
font-family: "Inter", sans-serif;
|
|
2655
2655
|
font-size: 13px;
|
|
2656
2656
|
font-weight: 400;
|
|
2657
|
-
color: #1e1e1e
|
|
2657
|
+
color: white; /* Changed from #1e1e1e to white */
|
|
2658
2658
|
box-sizing: border-box;
|
|
2659
2659
|
transition: background-color 0.2s;
|
|
2660
2660
|
height: 40px;
|
|
2661
2661
|
}
|
|
2662
2662
|
|
|
2663
2663
|
.qr-code-button:hover {
|
|
2664
|
-
background-color: #f0f0f0
|
|
2664
|
+
background-color: #141414; /* Changed from #f0f0f0 to darker hover state */
|
|
2665
2665
|
}
|
|
2666
2666
|
|
|
2667
2667
|
.qr-code-button-icon {
|
|
@@ -2674,11 +2674,12 @@
|
|
|
2674
2674
|
.qr-code-button-icon img {
|
|
2675
2675
|
width: 20px;
|
|
2676
2676
|
height: 20px;
|
|
2677
|
+
filter: brightness(0) invert(1); /* Make icon white */
|
|
2677
2678
|
}
|
|
2678
2679
|
|
|
2679
2680
|
.qr-code-button-text {
|
|
2680
2681
|
text-align: center;
|
|
2681
|
-
color: #1e1e1e
|
|
2682
|
+
color: white; /* Changed from #1e1e1e to white */
|
|
2682
2683
|
}
|
|
2683
2684
|
|
|
2684
2685
|
/* ------------------------------------------------- */
|