title and label style

This commit is contained in:
Tykayn 2021-11-30 18:27:50 +01:00 committed by tykayn
parent dbecfe6195
commit f958b012b9
5 changed files with 50 additions and 45 deletions

View File

@ -87,11 +87,8 @@
</button> </button>
</div> </div>
<div class="column"> <div class="column">
<button <button class="button is-finish is-fullwidth" (click)="createPoll()">
class="button is-finish is-fullwidth" <!-- [disabled]="!pollService.form.valid"-->
(click)="createPoll()"
[disabled]="!pollService.form.valid"
>
<i class="fa fa-save"></i> <i class="fa fa-save"></i>
Enregistrer le sondage Enregistrer le sondage
</button> </button>

View File

@ -2,7 +2,7 @@
<app-stepper [step_current]="6" [step_max]="pollService.step_max"></app-stepper> <app-stepper [step_current]="6" [step_max]="pollService.step_max"></app-stepper>
<div class="min-height"> <div class="min-height">
<form action="#" [formGroup]="pollService.form"> <form action="#" [formGroup]="pollService.form">
<h2 class="title is-2"> <h2>
Dites à vos participants qui vous êtes ! Dites à vos participants qui vous êtes !
</h2> </h2>
<label for="name"> <label for="name">

View File

@ -53,8 +53,8 @@
<div> <div>
Pour accéder au sondage et à tous ses paramètres : Pour accéder au sondage et à tous ses paramètres :
<br /> <br />
<pre class="is-default" routerLink="{{ pollService.getAdministrationUrlFromForm() }}" <pre class="is-default" routerLink="{{ pollService.getAdministrationUrlFromForm() }}">
>{{ pollService.getAdministrationUrlFromForm() }} {{ pollService.getAdministrationUrlFromForm() }}
</pre </pre
> >
<app-copy-text <app-copy-text

View File

@ -369,4 +369,5 @@ label {
font-size: 0.85rem; font-size: 0.85rem;
line-height: 1rem; line-height: 1rem;
margin-bottom: 0.5rem; margin-bottom: 0.5rem;
display: block;
} }

View File

@ -1,3 +1,4 @@
body {
h1, h1,
h2, h2,
h3, h3,
@ -5,6 +6,7 @@ h4,
h5, h5,
h6 { h6 {
font-family: $title_font; font-family: $title_font;
color: $primary_color;
} }
h1 { h1 {
@ -17,6 +19,10 @@ h1 {
h2 { h2 {
font-family: $title_font; font-family: $title_font;
font-size: 1.75rem;
font-weight: 600;
line-height: 2rem;
margin-bottom: 2rem;
} }
h3 { h3 {
@ -37,3 +43,4 @@ h4 {
.text-center { .text-center {
text-align: center; text-align: center;
} }
}