generated from VLADIMIR/template_frontend
21 lines
311 B
Vue
21 lines
311 B
Vue
<script setup lang="ts">
|
|
/* код */
|
|
</script>
|
|
|
|
<template>
|
|
<span class="text-with-font">
|
|
<slot></slot>
|
|
</span>
|
|
</template>
|
|
|
|
<style scoped>
|
|
.text-with-font {
|
|
font-family: 'font_old_typer';
|
|
color: #bfa07d;
|
|
font-weight: 600;
|
|
letter-spacing: 2px;
|
|
line-height: 20px;
|
|
font-size: 22px;
|
|
}
|
|
</style>
|