vue3-yuanma/packages/sfc-playground/src/Header.vue

24 lines
353 B
Vue
Raw Normal View History

2021-03-28 13:35:45 +08:00
<template>
<nav>
<h1>Vue SFC Playground</h1>
</nav>
</template>
<style>
nav {
height: var(--nav-height);
box-sizing: border-box;
padding: 0 1em;
background-color: #fff;
box-shadow: 0 0 4px rgba(0, 0, 0, 0.33);
position: relative;
z-index: 999;
}
h1 {
margin: 0;
line-height: var(--nav-height);
font-weight: 500;
}
</style>