mirror of
https://github.com/TryGhost/Ghost.git
synced 2024-12-25 20:03:12 +03:00
Fix form group bottom margins
This commit is contained in:
parent
94ca66cde5
commit
2234b04a56
@ -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);
|
||||
}
|
||||
|
@ -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%;
|
||||
|
@ -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"
|
||||
|
Loading…
Reference in New Issue
Block a user