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>
|
||||
<BulmaDrawer header="Konfiguration">
|
||||
<div class="panel-block">
|
||||
<div class="card">
|
||||
<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="column content">
|
||||
<h4>Rätsel</h4>
|
||||
|
@ -74,7 +83,7 @@
|
|||
</div>
|
||||
</div>
|
||||
</div>
|
||||
</BulmaDrawer>
|
||||
</div>
|
||||
</template>
|
||||
|
||||
<script lang="ts">
|
||||
|
@ -90,4 +99,8 @@ import BulmaDrawer from "./bulma/Drawer.vue";
|
|||
export default class extends Vue {}
|
||||
</script>
|
||||
|
||||
<style scoped></style>
|
||||
<style scoped>
|
||||
div.card:not(:last-child) {
|
||||
margin-bottom: 1.5rem;
|
||||
}
|
||||
</style>
|
||||
|
|
Loading…
Reference in a new issue