Fix form group bottom margins

This commit is contained in:
Peter Zimon 2021-10-14 17:11:07 +02:00
parent 94ca66cde5
commit 2234b04a56
3 changed files with 3 additions and 8 deletions

View File

@ -5,7 +5,6 @@
.gh-offers .view-container {
display: flex;
flex-direction: column;
justify-content: space-between;
padding-bottom: 0;
min-height: calc(100vh - 195px);
}

View File

@ -125,10 +125,6 @@ input[type=number] {
margin-bottom: 0;
}
.form-group:last-of-type {
margin-bottom: 0;
}
@media (max-width: 550px) {
.form-group {
max-width: 100%;

View File

@ -21,7 +21,7 @@
<div class="gh-main-section-block no-margin">
<h4 class="gh-main-section-header small bn">Basic</h4>
<div class="gh-main-section-content grey">
<GhFormGroup @errors={{this.errors}} @property="name">
<GhFormGroup @errors={{this.errors}} @property="name" class="no-margin">
<label for="name" class="fw6">Name</label>
<GhTextInput
@name="name"
@ -85,7 +85,7 @@
</div>
</GhFormGroup>
<div class="gh-offer-type">
<GhFormGroup @errors={{this.errors}} @property="offer-type">
<GhFormGroup @errors={{this.errors}} @property="offer-type" class="no-margin">
<span class="gh-select">
<OneWaySelect
@value={{this.offer.type}}
@ -179,7 +179,7 @@
</div>
<GhErrorMessage @errors={{this.errors}} @property="url" />
</GhFormGroup>
<GhFormGroup @errors={{this.errors}} @property="description">
<GhFormGroup @errors={{this.errors}} @property="description" class="no-margin">
<label for="description" class="fw6">Description</label>
<GhTextarea
@id="description"