style: add the styling for hr elements inside forms
This commit is contained in:
parent
97a92e279b
commit
2ef6f46ef4
2 changed files with 11 additions and 0 deletions
|
@ -7,6 +7,15 @@
|
||||||
margin-bottom: 20px;
|
margin-bottom: 20px;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
hr {
|
||||||
|
width: 100%;
|
||||||
|
height: 0;
|
||||||
|
margin-top: $default-padding;
|
||||||
|
margin-bottom: 2 * $default-padding;
|
||||||
|
border: none;
|
||||||
|
border-bottom: 1px solid $border-grey;
|
||||||
|
}
|
||||||
|
|
||||||
@mixin notice-text-style {
|
@mixin notice-text-style {
|
||||||
font-size: 14px;
|
font-size: 14px;
|
||||||
color: $grey;
|
color: $grey;
|
||||||
|
|
|
@ -38,6 +38,8 @@
|
||||||
= f.submit 'Enregistrer un brouillon (formnovalidate)', formnovalidate: true, class: 'button send'
|
= f.submit 'Enregistrer un brouillon (formnovalidate)', formnovalidate: true, class: 'button send'
|
||||||
= f.submit 'Envoyer', class: 'button send'
|
= f.submit 'Envoyer', class: 'button send'
|
||||||
|
|
||||||
|
%hr
|
||||||
|
|
||||||
%h1 Boutons
|
%h1 Boutons
|
||||||
|
|
||||||
%p
|
%p
|
||||||
|
|
Loading…
Reference in a new issue