blob: f0b0a49e78d9b00e49ed0fb9b46a11b7ff8e6613 [file] [log] [blame]
Adrià Vilanova Martínezf7ee6582021-09-02 21:53:28 +02001<script>
2import Page from './utils/Page.vue';
3
4export default {
5 components: {
6 Page,
7 },
8};
9</script>
10
11<template>
12 <page mini>
13 <div class="layout">
14 <mcw-material-icon class="main-icon" icon="no_accounts" />
15 <span class="label">You're not signed in.</span>
16 </div>
17 </page>
18</template>
19
20<style lang="scss" scoped>
21@use "@material/theme/color-palette" as palette;
22
23.layout {
24 display: flex;
25 flex-direction: column;
26 align-items: center;
27 margin: 16px 0;
28}
29
30.main-icon {
31 font-size: 75px;
32 color: palette.$grey-800;
33}
34
35.label {
36 margin-top: 14px;
37}
38</style>