orientbottom-modal.vue 755 Bytes
<template>
    <section>
        <div class="orient-bottom">
            <span class="description" v-text="$t('orientBottom-description')" />
            <span class="description2" v-text="$t('orientBottom-description2')" />
        </div>
    </section>
</template>

<script setup></script>
<style lang="less">
.orient-bottom {
    display: flex;
    flex-direction: column;
    gap: 8px;
    margin-top: 20px;

    .title {
        margin: 0px;
        font-size: 14px;
        line-height: 22px;
        font-weight: 600;
        color: #333333;
    }
    .description,
    .description2 {
        margin: 0px;
        font-size: 14px;
        line-height: 18px;
        font-weight: 500;
    }
    .description2 {
        color: red;
    }
}
</style>