svelte-drawer
Version:
A drawer (a.k.a side menu) component.
33 lines (31 loc) • 858 B
HTML
<head>
<title>svelte-drawer</title>
<meta name="viewport" content="width=device-width, initial-scale=1, shrink-to-fit=no">
<link
rel="stylesheet"
href="https://fonts.googleapis.com/css?family=Lato:300,400,500,700,italic"
>
<link
rel="stylesheet"
href="https://maxcdn.bootstrapcdn.com/bootstrap/4.0.0-beta/css/bootstrap.min.css"
integrity="sha384-/Y6pD6FV/Vv2HJnA6t+vslU6fwYXjCFtcEpHbNJ0lyAFsXTsjBbfaDjzALeQsN6M"
crossorigin="anonymous"
>
<link
rel="stylesheet"
href="https://maxcdn.bootstrapcdn.com/font-awesome/4.7.0/css/font-awesome.min.css"
>
<style>
body {
font-family: Lato, Helvetica Neue, sans-serif;
}
label {
display: block;
margin: 20px 0;
}
</style>
</head>
<body>
<div id="app" class="container-fluid"></div>
<script src="build/docs.js"></script>
</body>