formatting

This commit is contained in:
taskylizard
2023-11-02 00:50:22 +05:30
parent ad89f51fb2
commit c14f6be397
3 changed files with 12 additions and 6 deletions

View File

@@ -72,7 +72,11 @@ async function handleSubmit(type?: string) {
</div>
</div>
<div class="button-container">
<button v-for="item in feedbackOptions" :key="item.value" class="btn" @click="handleSubmit(item.value)">
<button
v-for="item in feedbackOptions"
:key="item.value"
class="btn"
@click="handleSubmit(item.value)">
<span>{{ item.label }}</span>
</button>
</div>
@@ -82,7 +86,10 @@ async function handleSubmit(type?: string) {
<p class="desc">The wiki is...</p>
<div>
<span>{{ getFeedbackOption(feedback.feedbackType)?.label }}</span>
<button style="margin-left: 0.5rem" class="btn" @click="feedback.feedbackType = undefined">
<button
style="margin-left: 0.5rem"
class="btn"
@click="feedback.feedbackType = undefined">
<span class="i-carbon-close">close</span>
</button>
</div>
@@ -100,7 +107,7 @@ async function handleSubmit(type?: string) {
</template>
<style scoped>
.step>*+* {
.step > * + * {
margin-top: 1rem;
}