@eturnity/eturnity_3d 1.0.23 → 1.0.26

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/package.json CHANGED
@@ -1,7 +1,7 @@
1
1
  {
2
2
  "name": "@eturnity/eturnity_3d",
3
3
  "private": false,
4
- "version": "1.0.23",
4
+ "version": "1.0.26",
5
5
  "main": "dist/main.js",
6
6
  "scripts": {
7
7
  "dev": "vue-cli-service serve --skip-plugins @vue/cli-plugin-eslint",
package/src/App.vue CHANGED
@@ -1,5 +1,5 @@
1
1
  <template>
2
- <div class="frame">
2
+ <div class="frame" :style="{height:'100%'}">
3
3
  <ThreeCanvas />
4
4
  </div>
5
5
  </template>
@@ -1,5 +1,5 @@
1
1
  <template>
2
- <div id="canvas3DContainer" ref="canvas3DContainer" crossorigin />
2
+ <div class="canvas3DContainer" ref="canvas3DContainer" :style={height:"100%"} crossorigin />
3
3
  </template>
4
4
 
5
5
  <script>
@@ -268,11 +268,11 @@ export default {
268
268
  </script>
269
269
 
270
270
  <style>
271
- #canvas3DContainer {
271
+ .canvas3DContainer {
272
272
  width: 100%;
273
273
  height: 100%;
274
274
  }
275
- #canvas3DContainer > canvas {
275
+ .canvas3DContainer > canvas {
276
276
  width: 100%;
277
277
  height: 100%;
278
278
  }