web: formatting by prettier

Co-authored-by: Schmackofatz <Schmackofatz@gmail.com>
This commit is contained in:
Mika 2024-07-10 19:48:21 +02:00
parent 856e8b70ef
commit b24a040d4d
10 changed files with 390 additions and 57 deletions

View file

@ -5,35 +5,22 @@
<loginPage />
</div>
<div v-else>
<HeaderBar />
<div class="ma-8">
<li>
<CategoryContainer licenseGroupName="Jetbrains Ultimate"/>
<CategoryContainer licenseGroupName="Microsoft"/>
<CategoryContainer licenseGroupName="Willy Wonker Online Movie"/>
</li>
</div>
<MainPage />
</div>
</v-main>
</v-app>
</template>
<script setup lang="ts">
import HeaderBar from './components/HeaderBar.vue';
import CategoryContainer from './components/CategoryContainer.vue';
import { store } from './store';
import MainPage from "./components/MainPage.vue";
import loginPage from "./components/loginPage.vue";
import { store } from "./store";
</script>
<style scoped>
li {
list-style-type: none;
}
html,body,main {
background-color: #E3E3E3
}
html,
body,
main {
background-color: #e3e3e3;
}
</style>