Almost finished form that lets user set PageInfo

This commit is contained in:
Alicia Sykes
2021-05-17 20:48:42 +01:00
parent ce851b2f0c
commit 062f48a6ef
7 changed files with 158 additions and 14 deletions

View File

@@ -7,9 +7,9 @@
</div>
<!-- Modal containing all the configuration options -->
<modal :name="modalName" :resizable="true" width="80%" height="80%"
<modal :name="modalName" :resizable="true" width="60%" height="80%"
@closed="$emit('modalChanged', false)">
<ConfigContainer :sections="sections" :config="combineConfig()" />
<ConfigContainer :config="combineConfig()" />
</modal>
</div>
</template>
@@ -82,5 +82,10 @@ export default {
}
}
}
</style>
<style lang="scss">
.vm--modal {
box-shadow: 0 40px 70px -2px hsl(0deg 0% 0% / 60%), 1px 1px 6px var(--primary);
}
</style>

View File

@@ -1,6 +1,6 @@
<template>
<form>
<label for="filter-tiles">Search {{active}}</label>
<label for="filter-tiles">Search</label>
<input
id="filter-tiles"
v-model="input"