Skip to content

Instantly share code, notes, and snippets.

@NovoManu
Last active August 18, 2019 16:07
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save NovoManu/82a46b2035c074e9fe92dafa965ee839 to your computer and use it in GitHub Desktop.
Save NovoManu/82a46b2035c074e9fe92dafa965ee839 to your computer and use it in GitHub Desktop.
<template functional>
<header class="header">
<nav class="header-nav" />
<div class="container">
<h1>{{ props.listName }}</h1>
</div>
</header>
</template>
<style lang="scss" scoped>
.header {
width: 100%;
&-nav {
background: teal;
width: 100%;
height: 56px;
}
}
</style>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment