22 lines
367 B
Vue
22 lines
367 B
Vue
<template>
|
|
<tiny-layout class="tiny-font">
|
|
<span>User Experience Design</span>
|
|
<p>Helvetica</p>
|
|
</tiny-layout>
|
|
</template>
|
|
|
|
<script setup lang="jsx">
|
|
import { Layout as TinyLayout } from '@opentiny/vue'
|
|
</script>
|
|
|
|
<style scoped>
|
|
.tiny-font span {
|
|
font-size: 14px;
|
|
line-height: 20px;
|
|
}
|
|
.tiny-font p {
|
|
font-size: 24px;
|
|
line-height: 48px;
|
|
}
|
|
</style>
|