fix: remove stray 0s from Tailwind classes
- Also fix invalid margin classes (e.g. `ml-8` → `ml-[8px]`) and incorrect font weight classes (`font-weight-600` → `font-semibold`) - Remove unused Feedback component SCSS file and inline its associated styles - Correct invalid background class `bg-[#f0f8f3]0` to valid `bg-[#f0f8f3]`
This commit is contained in:
@@ -1,11 +1,11 @@
|
||||
<template>
|
||||
<div class="create-service-order">
|
||||
<div class="w-full bg-white border-ff overflow-hidden rounded-[20px]">
|
||||
<div class=" order-header w-full flex items-center justify-between bg-[#f0f8f3]">
|
||||
<div class=" h-[48px] w-full flex items-center justify-between bg-[#f0f8f3]">
|
||||
<span class="text-[18px] font-medium text-[#171717] text-left ml-[12px]">
|
||||
{{ isCallSuccess ? "反馈已创建" : "反馈意见" }}
|
||||
</span>
|
||||
<img class="header-icon" src="https://oss.nianxx.cn/mp/static/version_101/home/feedback.png" />
|
||||
<img class="w-[98px] h-[48px]" src="https://oss.nianxx.cn/mp/static/version_101/home/feedback.png" />
|
||||
</div>
|
||||
|
||||
<div v-if="!isCallSuccess" class=" p-[12px]">
|
||||
@@ -19,7 +19,7 @@
|
||||
v-model="contactText" />
|
||||
</div>
|
||||
|
||||
<div class="btn rounded-[5px]0 text-white bg-button flex items-center justify-center" @click="handleCall">
|
||||
<div class="h-[44px] rounded-[5px] text-white bg-button flex items-center justify-center" @click="handleCall">
|
||||
立即提交
|
||||
</div>
|
||||
</div>
|
||||
@@ -34,7 +34,7 @@
|
||||
</div>
|
||||
|
||||
<div class="footer-help flex items-center pl-12 mb-[12px]">
|
||||
<img class="help-icon mr-[4px]" src="./images/icon_volume.png" />
|
||||
<img class="w-[16px] h-[16px] mr-[4px]" src="./images/icon_volume.png" />
|
||||
<span class="text-[12px] font-medium color-FA7319">
|
||||
{{ appName }}收到您的意见将第一时间为您处理!
|
||||
</span>
|
||||
@@ -107,7 +107,3 @@ onMounted(() => {
|
||||
});
|
||||
});
|
||||
</script>
|
||||
|
||||
<style scoped lang="scss">
|
||||
@import "./styles/index.scss";
|
||||
</style>
|
||||
|
||||
Reference in New Issue
Block a user