Replace all instances of prefixed flex utility classes (like flex-items-center, flex-justify-between, flex-full, flex-shrink-0) with their standard un-prefixed counterparts (items-center, justify-between, flex-1, shrink-0) across the codebase. Remove the deprecated src/static/scss/flex.scss partial file as it is no longer needed after these updates.
27 lines
527 B
Vue
27 lines
527 B
Vue
<template>
|
||
<view class="info-row flex items-center mt-[8px]">
|
||
<text class="label text-[12px] text-[#99a0ae]">{{ label }}:</text>
|
||
<text class="value flex-1 text-[12px] text-[#99a0ae]">{{ value }}</text>
|
||
</view>
|
||
</template>
|
||
|
||
<script setup>
|
||
import { defineProps } from "vue";
|
||
|
||
// Props
|
||
const props = defineProps({
|
||
label: {
|
||
type: String,
|
||
required: true,
|
||
default: "",
|
||
},
|
||
value: {
|
||
type: [String, Number],
|
||
required: true,
|
||
default: "",
|
||
},
|
||
});
|
||
</script>
|
||
|
||
<style scoped lang="scss"></style>
|