Skip to content

Instantly share code, notes, and snippets.

@NovoManu
Created August 18, 2019 16:17
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/a18b07db2dc5e43caa1d7aa00badea54 to your computer and use it in GitHub Desktop.
Save NovoManu/a18b07db2dc5e43caa1d7aa00badea54 to your computer and use it in GitHub Desktop.
<template functional>
<div class="container">
<div class="todo-list">
<slot />
</div>
</div>
</template>
<style lang="scss" scoped>
.todo-list {
display: flex;
flex-wrap: wrap;
justify-content: center;
align-items: stretch;
}
</style>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment