waygo-maps 1.0.80 → 1.0.81
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 +13 -13
- package/package.json +1 -1
package/dist/style.css
CHANGED
|
@@ -103,35 +103,35 @@ body {
|
|
|
103
103
|
|
|
104
104
|
.logo-outline-element {
|
|
105
105
|
position: absolute;
|
|
106
|
-
width:
|
|
107
|
-
height: calc(
|
|
106
|
+
width: 80px;
|
|
107
|
+
height: calc(80px * 0.25);
|
|
108
108
|
opacity: 0.25;
|
|
109
109
|
}
|
|
110
110
|
|
|
111
111
|
.logo-fill-element {
|
|
112
112
|
position: relative;
|
|
113
|
-
width:
|
|
114
|
-
height: calc(
|
|
113
|
+
width: 80px;
|
|
114
|
+
height: calc(80px * 0.25);
|
|
115
115
|
opacity: 1.0;
|
|
116
116
|
}
|
|
117
117
|
|
|
118
118
|
.website-container {
|
|
119
119
|
position: absolute;
|
|
120
|
-
right: 10px;
|
|
121
|
-
bottom: 10px;
|
|
122
|
-
|
|
123
|
-
|
|
120
|
+
/* right: 10px; */
|
|
121
|
+
/* bottom: 10px; */
|
|
122
|
+
right: 0px;
|
|
123
|
+
bottom: 0px;
|
|
124
124
|
height: fit-content;
|
|
125
125
|
width: fit-content;
|
|
126
126
|
cursor: pointer;
|
|
127
|
-
background-color: rgba(255, 255, 255, 1.0);
|
|
128
|
-
|
|
129
|
-
|
|
130
|
-
padding: 3px 10px;
|
|
127
|
+
/* background-color: rgba(255, 255, 255, 1.0); */
|
|
128
|
+
background-color: rgba(255, 255, 255, 0.45);
|
|
129
|
+
padding: 0px 5px;
|
|
130
|
+
/* padding: 3px 10px; */
|
|
131
131
|
font-family: 'Inter', sans-serif;
|
|
132
132
|
font-size: 12px;
|
|
133
133
|
color: #1e1e1e;
|
|
134
|
-
border-radius: 30px;
|
|
134
|
+
/* border-radius: 30px; */
|
|
135
135
|
}
|
|
136
136
|
|
|
137
137
|
.website-container:hover {
|