schon/storefront/app/components/ui/title.vue
2026-02-27 21:59:51 +03:00

28 lines
No EOL
431 B
Vue

<template>
<div class="title">
<h2>
<slot />
</h2>
</div>
</template>
<script setup lang="ts">
</script>
<style scoped lang="scss">
.title {
padding-block: 10px 50px;
display: grid;
place-items: center;
margin-bottom: 50px;
background: linear-gradient(0deg, $light 0%, $accentSmooth 100%);
& h2 {
text-align: center;
font-size: 48px;
font-weight: 900;
color: $white;
}
}
</style>