All checks were successful
Build and Deploy Nuxt / build (push) Successful in 34s
43 lines
913 B
Vue
43 lines
913 B
Vue
<script setup lang="ts">
|
|
import HeaderLinks from './HeaderLinks.vue';
|
|
import SiteOptions from './site_options/SiteOptions.vue';
|
|
</script>
|
|
|
|
<template>
|
|
<div class="header">
|
|
<div class="container">
|
|
<div class="header-container website">
|
|
<h1>ARANROIG.COM</h1>
|
|
<HeaderLinks></HeaderLinks>
|
|
</div>
|
|
</div>
|
|
<div class="header-container">
|
|
</div>
|
|
<div class="container">
|
|
<SiteOptions></SiteOptions>
|
|
</div>
|
|
</div>
|
|
</template>
|
|
|
|
<style lang="scss" scoped>
|
|
.header {
|
|
position: relative;
|
|
margin-top: 30px;
|
|
user-select: none;
|
|
display: flex;
|
|
justify-content: space-between;
|
|
}
|
|
|
|
.header-container {
|
|
&.website {
|
|
@media screen and (max-width: 600px) {
|
|
margin-top: 20px;
|
|
}
|
|
}
|
|
}
|
|
|
|
.header-container {
|
|
position:relative;
|
|
margin-bottom: 20px;
|
|
}
|
|
</style> |