chore: remove projections toggle and bump to 0.1.0
All checks were successful
Deploy to Production / deploy (push) Successful in 10s
All checks were successful
Deploy to Production / deploy (push) Successful in 10s
This commit is contained in:
@@ -1,9 +1,9 @@
|
||||
<script setup>
|
||||
import { Sun, Moon, Layers, Grid2x2 } from 'lucide-vue-next';
|
||||
import { Sun, Moon, Grid2x2 } from 'lucide-vue-next';
|
||||
import { ref, onMounted } from 'vue';
|
||||
import { useSettings } from '../composables/useSettings';
|
||||
|
||||
const { showProjections, toggleProjections, isCubeTranslucent, toggleCubeTranslucent } = useSettings();
|
||||
const { isCubeTranslucent, toggleCubeTranslucent } = useSettings();
|
||||
const isDark = ref(true);
|
||||
|
||||
const setTheme = (dark) => {
|
||||
@@ -34,11 +34,6 @@ onMounted(() => {
|
||||
</div>
|
||||
|
||||
<div class="nav-container">
|
||||
<!-- Projections Toggle -->
|
||||
<button class="btn-neon nav-btn icon-only" @click="toggleProjections" :title="showProjections ? 'Ukryj rzuty' : 'Pokaż rzuty'" :class="{ active: showProjections }">
|
||||
<Layers :size="20" />
|
||||
</button>
|
||||
|
||||
<!-- Cube Opacity Toggle -->
|
||||
<button
|
||||
class="btn-neon nav-btn icon-only"
|
||||
|
||||
Reference in New Issue
Block a user