You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
|
|
|
<template>
|
|
|
|
<h2>
|
|
|
|
<span>
|
|
|
|
<slot />
|
|
|
|
</span>
|
|
|
|
</h2>
|
|
|
|
</template>
|
|
|
|
<script lang="ts">
|
|
|
|
import { Component, Vue } from "vue-property-decorator";
|
|
|
|
|
|
|
|
@Component
|
|
|
|
export default class Subtitle extends Vue {}
|
|
|
|
</script>
|
|
|
|
<style lang="scss" scoped>
|
|
|
|
h2 {
|
|
|
|
display: block;
|
|
|
|
margin: 15px 0 30px;
|
|
|
|
|
|
|
|
span {
|
|
|
|
display: inline;
|
|
|
|
padding: 3px 8px;
|
|
|
|
font-family: "Liberation Sans", "Helvetica Neue", Roboto, Helvetica, Arial,
|
|
|
|
serif;
|
|
|
|
font-weight: 400;
|
|
|
|
font-size: 32px;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
</style>
|