@mapsindoors/map-template 1.36.3 → 1.36.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/README.md +3 -3
- package/package.json +1 -1
package/README.md
CHANGED
|
@@ -21,7 +21,7 @@ In your styles make sure to give it a size. For example:
|
|
|
21
21
|
mapsindoors-map {
|
|
22
22
|
display: block;
|
|
23
23
|
width: 100vw;
|
|
24
|
-
height:
|
|
24
|
+
height: 100dvh;
|
|
25
25
|
}
|
|
26
26
|
```
|
|
27
27
|
|
|
@@ -67,7 +67,7 @@ Use query parameters to configure the Web Component by setting the `supports-url
|
|
|
67
67
|
mapsindoors-map {
|
|
68
68
|
display: block;
|
|
69
69
|
width: 100vw;
|
|
70
|
-
height:
|
|
70
|
+
height: 100dvh;
|
|
71
71
|
}
|
|
72
72
|
</style>
|
|
73
73
|
</head>
|
|
@@ -97,7 +97,7 @@ import MapsIndoorsMap from '@mapsindoors/map-template/dist/mapsindoors-react.es.
|
|
|
97
97
|
<div style={{
|
|
98
98
|
display: 'block',
|
|
99
99
|
width: '100vw',
|
|
100
|
-
height: '
|
|
100
|
+
height: '100dvh'
|
|
101
101
|
}}>
|
|
102
102
|
<MapsIndoorsMap></MapsIndoorsMap>
|
|
103
103
|
</div>
|