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