ConfigView using bulma "card"
This commit is contained in:
parent
5b5d85e9d9
commit
a645dc84cc
1 changed files with 17 additions and 4 deletions
|
@ -1,6 +1,15 @@
|
||||||
<template>
|
<template>
|
||||||
<BulmaDrawer header="Konfiguration">
|
<div class="card">
|
||||||
<div class="panel-block">
|
<header class="card-header has-background-grey-lighter">
|
||||||
|
<p class="card-header-title">Konfiguration</p>
|
||||||
|
<button class="card-header-icon">
|
||||||
|
<span class="icon">
|
||||||
|
<font-awesome-icon icon="fa-solid fa-angle-down" />
|
||||||
|
</span>
|
||||||
|
</button>
|
||||||
|
</header>
|
||||||
|
|
||||||
|
<div class="card-content">
|
||||||
<div class="columns" style="width: 100%">
|
<div class="columns" style="width: 100%">
|
||||||
<div class="column content">
|
<div class="column content">
|
||||||
<h4>Rätsel</h4>
|
<h4>Rätsel</h4>
|
||||||
|
@ -74,7 +83,7 @@
|
||||||
</div>
|
</div>
|
||||||
</div>
|
</div>
|
||||||
</div>
|
</div>
|
||||||
</BulmaDrawer>
|
</div>
|
||||||
</template>
|
</template>
|
||||||
|
|
||||||
<script lang="ts">
|
<script lang="ts">
|
||||||
|
@ -90,4 +99,8 @@ import BulmaDrawer from "./bulma/Drawer.vue";
|
||||||
export default class extends Vue {}
|
export default class extends Vue {}
|
||||||
</script>
|
</script>
|
||||||
|
|
||||||
<style scoped></style>
|
<style scoped>
|
||||||
|
div.card:not(:last-child) {
|
||||||
|
margin-bottom: 1.5rem;
|
||||||
|
}
|
||||||
|
</style>
|
||||||
|
|
Loading…
Reference in a new issue