waygo-maps 1.1.3 → 1.1.5
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 -12
- package/package.json +1 -1
package/dist/style.css
CHANGED
|
@@ -94,7 +94,7 @@
|
|
|
94
94
|
max-width: 130px; /* Add explicit max-width */
|
|
95
95
|
cursor: pointer;
|
|
96
96
|
display: flex; /* Add flex display */
|
|
97
|
-
|
|
97
|
+
background-color: red;
|
|
98
98
|
/* position: absolute; */
|
|
99
99
|
/* bottom: 10; */
|
|
100
100
|
/* left: 0px; */
|
|
@@ -108,31 +108,37 @@
|
|
|
108
108
|
cursor: pointer; */
|
|
109
109
|
}
|
|
110
110
|
|
|
111
|
-
.logo-outline-element
|
|
112
|
-
.logo-fill-element {
|
|
113
|
-
position:
|
|
111
|
+
/* .logo-outline-element { */
|
|
112
|
+
/* .logo-fill-element { */
|
|
113
|
+
/* position: relative;
|
|
114
114
|
top: 0;
|
|
115
115
|
left: 0;
|
|
116
116
|
width: 100%;
|
|
117
117
|
height: 100%;
|
|
118
|
-
opacity: 0.3;
|
|
118
|
+
opacity: 0.3; */
|
|
119
119
|
/* background-color: blue; */
|
|
120
|
-
}
|
|
120
|
+
/* } */
|
|
121
121
|
|
|
122
122
|
.logo-outline-element {
|
|
123
|
-
position:
|
|
123
|
+
position: absolute;
|
|
124
|
+
bottom: 0;
|
|
125
|
+
right: 0;
|
|
126
|
+
|
|
124
127
|
width: 80px;
|
|
125
128
|
z-index: 10;
|
|
126
|
-
height:
|
|
127
|
-
opacity:
|
|
129
|
+
height: 100%;
|
|
130
|
+
opacity: 1;
|
|
131
|
+
background-color: orange;
|
|
128
132
|
}
|
|
129
133
|
|
|
130
134
|
.logo-fill-element {
|
|
131
135
|
position: absolute;
|
|
136
|
+
bottom: 0;
|
|
137
|
+
right: 0;
|
|
132
138
|
width: 80px;
|
|
133
|
-
|
|
134
|
-
|
|
135
|
-
|
|
139
|
+
height: 20;
|
|
140
|
+
opacity: 1;
|
|
141
|
+
background-color: purple;
|
|
136
142
|
}
|
|
137
143
|
|
|
138
144
|
.website-container {
|