Update room onboarding styling
This commit is contained in:
parent
7d2bba14b7
commit
fe8ecdf1d2
|
|
@ -3,7 +3,9 @@
|
|||
<h1
|
||||
class="rooms-onboarding__heading"
|
||||
data-cy="page-title">Räume</h1>
|
||||
<p data-cy="rooms-onboarding-text">
|
||||
<p
|
||||
data-cy="rooms-onboarding-text"
|
||||
class="rooms-onboarding__text">
|
||||
Hier können Sie Räume erstellen, damit SchülerInnen zusammenarbeiten und Beiträge teilen können.
|
||||
</p>
|
||||
<div class="rooms-onboarding__button">
|
||||
|
|
@ -46,9 +48,16 @@
|
|||
width: 100vw;
|
||||
max-width: 800px;
|
||||
flex-direction: column;
|
||||
justify-items: center;
|
||||
justify-content: center;
|
||||
justify-self: center;
|
||||
margin: 0 auto;
|
||||
grid-column: 1 / -1;
|
||||
align-items: center;
|
||||
|
||||
&__text {
|
||||
@include regular-text;
|
||||
text-align: center;
|
||||
max-width: 500px;
|
||||
margin-bottom: $large-spacing;
|
||||
}
|
||||
}
|
||||
</style>
|
||||
|
|
|
|||
|
|
@ -4,6 +4,7 @@
|
|||
<room-widget
|
||||
v-bind="room"
|
||||
:key="room.name"
|
||||
class="rooms-page__widget"
|
||||
data-cy="room-widget"
|
||||
v-for="room in filteredRooms"/>
|
||||
<add-room
|
||||
|
|
@ -112,7 +113,7 @@
|
|||
}
|
||||
}
|
||||
|
||||
& > div {
|
||||
&__widget, &__add-room {
|
||||
flex: 0 0 30%;
|
||||
margin-bottom: $large-spacing;
|
||||
margin-right: 1%;
|
||||
|
|
@ -122,6 +123,5 @@
|
|||
margin-right: inherit;
|
||||
}
|
||||
}
|
||||
|
||||
}
|
||||
</style>
|
||||
|
|
|
|||
Loading…
Reference in New Issue