chore: remove projections toggle and bump to 0.1.0
All checks were successful
Deploy to Production / deploy (push) Successful in 10s

This commit is contained in:
2026-02-22 21:11:42 +00:00
parent 86c4a18851
commit 3261aea81d
4 changed files with 5 additions and 178 deletions

View File

@@ -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"