Most of the interface done

This commit is contained in:
nemunaire 2022-10-02 23:24:33 +02:00
commit be8ff3466a
32 changed files with 983 additions and 7 deletions

View file

@ -0,0 +1,26 @@
<script>
import {
Col,
Container,
Row,
Icon,
} from 'sveltestrap';
import CardStatAlarms from '../../components/CardStatAlarms.svelte';
import CardStatTimeAwaking from '../../components/CardStatTimeAwaking.svelte';
import CardStatRoutines from '../../components/CardStatRoutines.svelte';
</script>
<Container fluid class="flex-fill d-flex flex-column justify-content-center py-2">
<Row cols={{xs: 1, md: 2, lg: 3}}>
<Col class="mb-4">
<CardStatAlarms />
</Col>
<Col class="mb-4">
<CardStatTimeAwaking />
</Col>
<Col class="mb-4">
<CardStatRoutines />
</Col>
</Row>
</Container>