Handle actions

This commit is contained in:
nemunaire 2022-10-04 17:25:58 +02:00
commit b125a3cd00
7 changed files with 387 additions and 20 deletions

View file

@ -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 &hellip;
</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 &hellip;
</Card>
<Col md="4">
<ActionList class="mb-5" />
</Col>
</Row>
</Container>