Initial commit
This commit is contained in:
53
app.vue
Normal file
53
app.vue
Normal file
@@ -0,0 +1,53 @@
|
||||
<script setup lang="ts">
|
||||
useSeoMeta({
|
||||
title: 'Чистый город - клининговая компания',
|
||||
})
|
||||
</script>
|
||||
|
||||
<template>
|
||||
<div class="app text-lg">
|
||||
<k-nav></k-nav>
|
||||
<main>
|
||||
<about-company></about-company>
|
||||
<services></services>
|
||||
</main>
|
||||
</div>
|
||||
</template>
|
||||
|
||||
<style lang="postcss">
|
||||
:root {
|
||||
--col-width: 1280px;
|
||||
|
||||
--clr-brand: #6ec843;
|
||||
}
|
||||
|
||||
html {
|
||||
scroll-behavior: smooth;
|
||||
}
|
||||
|
||||
.app {
|
||||
min-height: 100dvh;
|
||||
}
|
||||
|
||||
p:not(:last-of-type) {
|
||||
margin-bottom: 16px;
|
||||
}
|
||||
|
||||
.col-w {
|
||||
max-width: var(--col-width);
|
||||
}
|
||||
|
||||
.scroll-target {
|
||||
position: absolute;
|
||||
|
||||
&:target {
|
||||
scroll-margin-top: 60px;
|
||||
}
|
||||
}
|
||||
|
||||
.link {
|
||||
text-decoration: underline;
|
||||
text-decoration-thickness: 1px;
|
||||
text-underline-offset: 3px;
|
||||
}
|
||||
</style>
|
||||
Reference in New Issue
Block a user