Absorb header, footer into main section of feedback dialog
trying to make it less wonky...
This commit is contained in:
parent
817d8bef13
commit
915b58aafa
|
@ -8,11 +8,9 @@
|
|||
:active.sync="showFeedbackDialog">
|
||||
<div class="modal-card">
|
||||
|
||||
<header class="modal-card-head">
|
||||
<p class="modal-card-title">User Feedback</p>
|
||||
</header>
|
||||
|
||||
<section class="modal-card-body">
|
||||
<p class="modal-card-title">User Feedback</p>
|
||||
<br />
|
||||
<p>
|
||||
Questions, suggestions, comments, complaints, etc. regarding this
|
||||
website are welcome and may be submitted below.
|
||||
|
@ -35,18 +33,19 @@
|
|||
type="textarea">
|
||||
</b-input>
|
||||
</b-field>
|
||||
|
||||
<div class="buttons">
|
||||
<b-button @click="showFeedbackDialog = false">
|
||||
Cancel
|
||||
</b-button>
|
||||
<b-button type="is-primary"
|
||||
@click="sendFeedback()"
|
||||
:disabled="!message">
|
||||
Send Note
|
||||
</b-button>
|
||||
</div>
|
||||
</section>
|
||||
|
||||
<footer class="modal-card-foot">
|
||||
<b-button @click="showFeedbackDialog = false">
|
||||
Cancel
|
||||
</b-button>
|
||||
<b-button type="is-primary"
|
||||
@click="sendFeedback()"
|
||||
:disabled="!message">
|
||||
Send Note
|
||||
</b-button>
|
||||
</footer>
|
||||
</div>
|
||||
</b-modal>
|
||||
</div>
|
||||
|
|
Loading…
Reference in a new issue