Moved the Kociemba/Beginner solve options into a sleek dropdown menu positioned above the Scramble button on the left side of the screen. This ensures the solver controls no longer obstruct the programmatic move queue at the bottom.
29 lines
519 B
Vue
29 lines
519 B
Vue
<script setup>
|
|
import SmartCube from "./components/renderers/SmartCube.vue";
|
|
import NavBar from "./components/NavBar.vue";
|
|
import Footer from "./components/Footer.vue";
|
|
</script>
|
|
|
|
<template>
|
|
<NavBar />
|
|
<div class="app-content">
|
|
<SmartCube />
|
|
</div>
|
|
<Footer />
|
|
</template>
|
|
|
|
<style scoped>
|
|
.app-content {
|
|
flex: 1;
|
|
display: flex;
|
|
justify-content: center;
|
|
align-items: center;
|
|
width: 100%;
|
|
padding: 0;
|
|
position: relative;
|
|
z-index: 1;
|
|
user-select: none;
|
|
-webkit-user-select: none;
|
|
}
|
|
</style>
|