All checks were successful
Build and Deploy Nuxt / build (push) Successful in 34s
40 lines
936 B
Vue
40 lines
936 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>
|
|
<div class="header-container">
|
|
<HeaderLinks></HeaderLinks>
|
|
</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 {
|
|
position: relative;
|
|
margin-left: 15px;
|
|
margin-right: 15px;
|
|
background: var(--color-background-fore);
|
|
padding: 8px 12px;
|
|
font-size: 1em;
|
|
color: white;
|
|
border: 1px solid var(--color-border-color);
|
|
border-radius: 8px;
|
|
box-shadow: 8px -8px 0px 0px var(--color-container-shadow);
|
|
}
|
|
</style> |