Add illustration
This commit is contained in:
parent
fe8ecdf1d2
commit
c1ef6a2aee
|
|
@ -3,6 +3,7 @@
|
||||||
<h1
|
<h1
|
||||||
class="rooms-onboarding__heading"
|
class="rooms-onboarding__heading"
|
||||||
data-cy="page-title">Räume</h1>
|
data-cy="page-title">Räume</h1>
|
||||||
|
<rooms-illustration class="rooms-onboarding__illustration" />
|
||||||
<p
|
<p
|
||||||
data-cy="rooms-onboarding-text"
|
data-cy="rooms-onboarding-text"
|
||||||
class="rooms-onboarding__text">
|
class="rooms-onboarding__text">
|
||||||
|
|
@ -23,6 +24,7 @@
|
||||||
|
|
||||||
<script>
|
<script>
|
||||||
import {NEW_ROOM_PAGE} from '@/router/room.names';
|
import {NEW_ROOM_PAGE} from '@/router/room.names';
|
||||||
|
import RoomsIllustration from '@/components/illustrations/RoomsIllustration';
|
||||||
|
|
||||||
export default {
|
export default {
|
||||||
props: {
|
props: {
|
||||||
|
|
@ -31,6 +33,7 @@
|
||||||
default: false,
|
default: false,
|
||||||
},
|
},
|
||||||
},
|
},
|
||||||
|
components: {RoomsIllustration},
|
||||||
|
|
||||||
data() {
|
data() {
|
||||||
return {
|
return {
|
||||||
|
|
@ -53,6 +56,17 @@
|
||||||
grid-column: 1 / -1;
|
grid-column: 1 / -1;
|
||||||
align-items: center;
|
align-items: center;
|
||||||
|
|
||||||
|
&__heading {
|
||||||
|
margin-bottom: $large-spacing;
|
||||||
|
}
|
||||||
|
|
||||||
|
&__illustration {
|
||||||
|
width: 400px;
|
||||||
|
height: 320px;
|
||||||
|
flex-shrink: 0;
|
||||||
|
margin-bottom: $large-spacing;
|
||||||
|
}
|
||||||
|
|
||||||
&__text {
|
&__text {
|
||||||
@include regular-text;
|
@include regular-text;
|
||||||
text-align: center;
|
text-align: center;
|
||||||
|
|
|
||||||
Loading…
Reference in New Issue