Most of the interface done
This commit is contained in:
parent
4eea7769ff
commit
be8ff3466a
32 changed files with 983 additions and 7 deletions
27
ui/src/routes/routines/+page.svelte
Normal file
27
ui/src/routes/routines/+page.svelte
Normal file
|
|
@ -0,0 +1,27 @@
|
|||
<script>
|
||||
import {
|
||||
Card,
|
||||
Col,
|
||||
Container,
|
||||
Row,
|
||||
Icon,
|
||||
} from 'sveltestrap';
|
||||
|
||||
import CardRoutine from '../../components/CardRoutine.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 />
|
||||
</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>
|
||||
</Row>
|
||||
</Container>
|
||||
Loading…
Add table
Add a link
Reference in a new issue