Setup wizard update

This commit is contained in:
carodej
2020-07-01 11:01:54 +02:00
parent aedc98cc8b
commit a98625876d
46 changed files with 2487 additions and 263 deletions
@@ -1,5 +1,5 @@
<template>
<div class="info-box">
<div class="info-box" :class="type">
<slot></slot>
</div>
</template>
@@ -7,6 +7,7 @@
<script>
export default {
name: 'InfoBox',
props: ['type']
}
</script>
@@ -21,9 +22,18 @@
background: $light_background;
text-align: left;
&.error {
background: rgba($danger, 0.1);
p, a {
color: $danger;
}
}
p {
@include font-size(15);
line-height: 1.6;
word-break: break-all;
}
a {