waygo-maps 1.1.1 → 1.1.3
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 +18 -5
- package/package.json +1 -1
package/dist/style.css
CHANGED
|
@@ -85,16 +85,16 @@
|
|
|
85
85
|
}
|
|
86
86
|
|
|
87
87
|
.logo-image-container {
|
|
88
|
-
position:
|
|
88
|
+
position: absolute;
|
|
89
89
|
right: 6px;
|
|
90
|
-
bottom:
|
|
90
|
+
bottom: 8px;
|
|
91
91
|
height: auto;
|
|
92
92
|
max-height: 30px; /* Add explicit max-height */
|
|
93
93
|
width: auto;
|
|
94
94
|
max-width: 130px; /* Add explicit max-width */
|
|
95
95
|
cursor: pointer;
|
|
96
96
|
display: flex; /* Add flex display */
|
|
97
|
-
background-color: red;
|
|
97
|
+
/* background-color: red; */
|
|
98
98
|
/* position: absolute; */
|
|
99
99
|
/* bottom: 10; */
|
|
100
100
|
/* left: 0px; */
|
|
@@ -108,16 +108,29 @@
|
|
|
108
108
|
cursor: pointer; */
|
|
109
109
|
}
|
|
110
110
|
|
|
111
|
-
.logo-outline-element
|
|
111
|
+
.logo-outline-element,
|
|
112
|
+
.logo-fill-element {
|
|
112
113
|
position: absolute;
|
|
114
|
+
top: 0;
|
|
115
|
+
left: 0;
|
|
116
|
+
width: 100%;
|
|
117
|
+
height: 100%;
|
|
118
|
+
opacity: 0.3;
|
|
119
|
+
/* background-color: blue; */
|
|
120
|
+
}
|
|
121
|
+
|
|
122
|
+
.logo-outline-element {
|
|
123
|
+
position: relative;
|
|
113
124
|
width: 80px;
|
|
125
|
+
z-index: 10;
|
|
114
126
|
height: 20px;
|
|
115
127
|
opacity: 0.3;
|
|
116
128
|
}
|
|
117
129
|
|
|
118
130
|
.logo-fill-element {
|
|
119
|
-
position:
|
|
131
|
+
position: absolute;
|
|
120
132
|
width: 80px;
|
|
133
|
+
z-index: 15;
|
|
121
134
|
height: 20px;
|
|
122
135
|
opacity: 1.0;
|
|
123
136
|
}
|