mirror of
https://github.com/Dvorinka/swingmusic-extended.git
synced 2026-06-03 20:13:02 +00:00
ade8edcba2
+ move left sidebar to separate component
34 lines
596 B
Vue
34 lines
596 B
Vue
<template>
|
|
<div class="settingspage">
|
|
<div class="scrollable">
|
|
<Content :current="0" />
|
|
</div>
|
|
<Nav />
|
|
</div>
|
|
</template>
|
|
|
|
<script setup lang="ts">
|
|
import Nav from "@/components/SettingsView/Nav.vue";
|
|
import Content from "../components/SettingsView/Content.vue";
|
|
</script>
|
|
|
|
<style lang="scss">
|
|
.settingspage {
|
|
height: 100%;
|
|
padding: 1rem;
|
|
display: grid;
|
|
grid-template-rows: 1fr max-content;
|
|
gap: 1rem;
|
|
background-color: $black;
|
|
|
|
.scrollable {
|
|
overflow: auto;
|
|
margin-top: 1rem;
|
|
|
|
@include for-desktop-down {
|
|
margin-top: 0;
|
|
}
|
|
}
|
|
}
|
|
</style>
|