Handle actions
This commit is contained in:
parent
299f3ba0cf
commit
b125a3cd00
7 changed files with 387 additions and 20 deletions
|
|
@ -8,20 +8,28 @@
|
|||
} from 'sveltestrap';
|
||||
|
||||
import CardRoutine from '../../components/CardRoutine.svelte';
|
||||
import ActionList from '../../components/ActionList.svelte';
|
||||
</script>
|
||||
|
||||
<Container fluid class="flex-fill d-flex flex-column py-2">
|
||||
<Row cols={{xs: 1, md: 2, lg: 3}}>
|
||||
<Col class="mb-4">
|
||||
<CardRoutine />
|
||||
<Row>
|
||||
<Col md="8">
|
||||
<Row cols={{xs: 1, lg: 2, xl: 3}}>
|
||||
<Col class="mb-4">
|
||||
<CardRoutine />
|
||||
</Col>
|
||||
<Col class="mb-4">
|
||||
<Card
|
||||
class="h-100 d-flex justify-content-center align-items-center fst-italic"
|
||||
style="cursor: pointer; border-style: dashed; min-height: 5em;"
|
||||
>
|
||||
Ajouter une routine …
|
||||
</Card>
|
||||
</Col>
|
||||
</Row>
|
||||
</Col>
|
||||
<Col class="mb-4">
|
||||
<Card
|
||||
class="h-100 d-flex justify-content-center align-items-center fst-italic"
|
||||
style="cursor: pointer; border-style: dashed;"
|
||||
>
|
||||
Ajouter une routine …
|
||||
</Card>
|
||||
<Col md="4">
|
||||
<ActionList class="mb-5" />
|
||||
</Col>
|
||||
</Row>
|
||||
</Container>
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue