Skip to content

Instantly share code, notes, and snippets.

@shailen-naidoo
Created December 13, 2018 09:42
Show Gist options
  • Save shailen-naidoo/a5e23a6579bb48143c7ba8c1c922e452 to your computer and use it in GitHub Desktop.
Save shailen-naidoo/a5e23a6579bb48143c7ba8c1c922e452 to your computer and use it in GitHub Desktop.
Menu
<template>
<li><slot></slot></li>
</template>
<style scoped>
li {
font: 200 20px/1.5 Helvetica, Verdana, sans-serif;
border-bottom: 1px solid #ccc;
}
li:last-child {
border: none;
}
li a {
text-decoration: none;
color: #000;
display: block;
width: 200px;
-webkit-transition: font-size 0.3s ease, background-color 0.3s ease;
-moz-transition: font-size 0.3s ease, background-color 0.3s ease;
-o-transition: font-size 0.3s ease, background-color 0.3s ease;
-ms-transition: font-size 0.3s ease, background-color 0.3s ease;
transition: font-size 0.3s ease, background-color 0.3s ease;
}
li a:hover {
font-size: 30px;
background: #f6f6f6;
}
</style>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment