mirror of
https://framagit.org/framasoft/framadate/funky-framadate-front.git
synced 2023-08-25 13:53:14 +02:00
added wrap to flex-line
This commit is contained in:
parent
cb6979926d
commit
ef9a0fe770
@ -1,11 +1,9 @@
|
|||||||
<div class="description">
|
<router-outlet></router-outlet>
|
||||||
|
<h1 i18n>
|
||||||
<router-outlet></router-outlet>
|
|
||||||
<h1 i18n>
|
|
||||||
Pour commencer
|
Pour commencer
|
||||||
</h1>
|
</h1>
|
||||||
|
|
||||||
<div class="flex-line">
|
<div class="flex-line">
|
||||||
<span class="pre-selector" i18n>
|
<span class="pre-selector" i18n>
|
||||||
Je veux créer un sondage
|
Je veux créer un sondage
|
||||||
</span>
|
</span>
|
||||||
@ -17,31 +15,30 @@
|
|||||||
classique
|
classique
|
||||||
</option>
|
</option>
|
||||||
</select>
|
</select>
|
||||||
</div>
|
</div>
|
||||||
|
|
||||||
<div class="flex-line">
|
<div class="flex-line">
|
||||||
<label for="poll_title" class="title-label" i18n>
|
<label for="poll_title" class="title-label" i18n>
|
||||||
Dont le titre sera
|
Dont le titre sera
|
||||||
</label>
|
</label>
|
||||||
<input type="text" id="poll_title" name="poll_title" [(ngModel)]="config.title">
|
<input type="text" id="poll_title" name="poll_title" [(ngModel)]="config.title">
|
||||||
|
|
||||||
</div>
|
</div>
|
||||||
|
|
||||||
<div>
|
<div>
|
||||||
<label for="poll_description" class="title-label" i18n>
|
<label for="poll_description" class="title-label" i18n>
|
||||||
et la description serait
|
et la description serait
|
||||||
</label>
|
</label>
|
||||||
<textarea id="poll_description" name="poll_description" [(ngModel)]="config.description" cols="50"
|
<textarea id="poll_description" name="poll_description" [(ngModel)]="config.description" cols="50"
|
||||||
lines="5"></textarea>
|
lines="5"></textarea>
|
||||||
|
|
||||||
</div>
|
</div>
|
||||||
<div class="flex-line">
|
<div class="flex-line">
|
||||||
<label for="my_name">
|
<label for="my_name">
|
||||||
Je peux aussi préciser mon nom si je le souhaite :
|
Je peux aussi préciser mon nom si je le souhaite :
|
||||||
</label>
|
</label>
|
||||||
<input type="text" name="my_name" id="my_name" [(ngModel)]="config.myName">
|
<input type="text" name="my_name" id="my_name" [(ngModel)]="config.myName">
|
||||||
</div>
|
|
||||||
<a [routerLink]="'/step/answers'" class="btn btn-block" i18n>
|
|
||||||
Continuer
|
|
||||||
</a>
|
|
||||||
</div>
|
</div>
|
||||||
|
<a [routerLink]="'/step/answers'" class="btn btn-block" i18n>
|
||||||
|
Continuer
|
||||||
|
</a>
|
@ -3,6 +3,7 @@
|
|||||||
.flex-line {
|
.flex-line {
|
||||||
display: flex;
|
display: flex;
|
||||||
align-items: center;
|
align-items: center;
|
||||||
|
flex-wrap: wrap;
|
||||||
|
|
||||||
& > input,
|
& > input,
|
||||||
& > select {
|
& > select {
|
||||||
|
Loading…
Reference in New Issue
Block a user