Absorb header, footer into main section of feedback dialog

trying to make it less wonky...
This commit is contained in:
Lance Edgar 2019-11-26 16:55:39 -06:00
parent 817d8bef13
commit 915b58aafa

View file

@ -8,11 +8,9 @@
:active.sync="showFeedbackDialog"> :active.sync="showFeedbackDialog">
<div class="modal-card"> <div class="modal-card">
<header class="modal-card-head">
<p class="modal-card-title">User Feedback</p>
</header>
<section class="modal-card-body"> <section class="modal-card-body">
<p class="modal-card-title">User Feedback</p>
<br />
<p> <p>
Questions, suggestions, comments, complaints, etc. regarding this Questions, suggestions, comments, complaints, etc. regarding this
website are welcome and may be submitted below. website are welcome and may be submitted below.
@ -35,9 +33,8 @@
type="textarea"> type="textarea">
</b-input> </b-input>
</b-field> </b-field>
</section>
<footer class="modal-card-foot"> <div class="buttons">
<b-button @click="showFeedbackDialog = false"> <b-button @click="showFeedbackDialog = false">
Cancel Cancel
</b-button> </b-button>
@ -46,7 +43,9 @@
:disabled="!message"> :disabled="!message">
Send Note Send Note
</b-button> </b-button>
</footer> </div>
</section>
</div> </div>
</b-modal> </b-modal>
</div> </div>