waygo-maps 1.1.2 → 1.1.4
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 +21 -3
- package/package.json +1 -1
package/dist/style.css
CHANGED
|
@@ -87,14 +87,14 @@
|
|
|
87
87
|
.logo-image-container {
|
|
88
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,18 +108,36 @@
|
|
|
108
108
|
cursor: pointer; */
|
|
109
109
|
}
|
|
110
110
|
|
|
111
|
+
/* .logo-outline-element { */
|
|
112
|
+
/* .logo-fill-element { */
|
|
113
|
+
/* position: relative;
|
|
114
|
+
top: 0;
|
|
115
|
+
left: 0;
|
|
116
|
+
width: 100%;
|
|
117
|
+
height: 100%;
|
|
118
|
+
opacity: 0.3; */
|
|
119
|
+
/* background-color: blue; */
|
|
120
|
+
/* } */
|
|
121
|
+
|
|
111
122
|
.logo-outline-element {
|
|
112
123
|
position: absolute;
|
|
124
|
+
top: 0;
|
|
125
|
+
left: 0;
|
|
126
|
+
|
|
113
127
|
width: 80px;
|
|
114
|
-
|
|
128
|
+
z-index: 10;
|
|
129
|
+
height: 100%;
|
|
115
130
|
opacity: 0.3;
|
|
131
|
+
background-color: orange;
|
|
116
132
|
}
|
|
117
133
|
|
|
118
134
|
.logo-fill-element {
|
|
119
135
|
position: relative;
|
|
120
136
|
width: 80px;
|
|
137
|
+
z-index: 15;
|
|
121
138
|
height: 20px;
|
|
122
139
|
opacity: 1.0;
|
|
140
|
+
background-color: purple;
|
|
123
141
|
}
|
|
124
142
|
|
|
125
143
|
.website-container {
|