waygo-maps 1.0.96 → 1.0.98
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 +15 -5
- package/package.json +1 -1
package/dist/style.css
CHANGED
|
@@ -86,29 +86,39 @@
|
|
|
86
86
|
|
|
87
87
|
.logo-image-container {
|
|
88
88
|
position: absolute;
|
|
89
|
+
right: 6px;
|
|
90
|
+
bottom: 6px;
|
|
91
|
+
height: auto;
|
|
92
|
+
max-height: 30px; /* Add explicit max-height */
|
|
93
|
+
width: auto;
|
|
94
|
+
max-width: 130px; /* Add explicit max-width */
|
|
95
|
+
cursor: pointer;
|
|
96
|
+
display: flex; /* Add flex display */
|
|
97
|
+
/* background-color: red; */
|
|
98
|
+
/* position: absolute; */
|
|
89
99
|
/* bottom: 10; */
|
|
90
100
|
/* left: 0px; */
|
|
91
101
|
/* bottom: 0; */
|
|
92
102
|
/* z-index: 10; */
|
|
93
|
-
background-color: red;
|
|
103
|
+
/* background-color: red;
|
|
94
104
|
right: 6px;
|
|
95
105
|
bottom: 2px;
|
|
96
106
|
height: fit-content;
|
|
97
107
|
width: fit-content;
|
|
98
|
-
cursor: pointer;
|
|
108
|
+
cursor: pointer; */
|
|
99
109
|
}
|
|
100
110
|
|
|
101
111
|
.logo-outline-element {
|
|
102
112
|
position: absolute;
|
|
103
113
|
width: 80px;
|
|
104
|
-
height:
|
|
105
|
-
opacity: 0.
|
|
114
|
+
height: 20px;
|
|
115
|
+
opacity: 0.3;
|
|
106
116
|
}
|
|
107
117
|
|
|
108
118
|
.logo-fill-element {
|
|
109
119
|
position: relative;
|
|
110
120
|
width: 80px;
|
|
111
|
-
height:
|
|
121
|
+
height: 20px;
|
|
112
122
|
opacity: 1.0;
|
|
113
123
|
}
|
|
114
124
|
|