| 123456789101112131415161718192021222324252627 |
- <style>
- .babylonjs-canvas {
- flex: 1;
- width: 100%;
- height: 100%;
- }
- nav-bar {
- position: absolute;
- height: 80px;
- width: 100%;
- bottom: 0;
- opacity: 0.3;
- background-color: black;
- color: white;
- transition: 1s;
- align-items: center;
- justify-content: center;
- display: flex;
- }
- </style>
- <canvas class="babylonjs-canvas" id="{{canvasId}}">
- </canvas>
- <nav-bar></nav-bar>
|