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.
6 lines
115 B
JavaScript
6 lines
115 B
JavaScript
import { createApp } from "vue";
|
|
import "./style.css";
|
|
import App from "./App.vue";
|
|
|
|
createApp(App).mount("#app");
|