SidebarButton 1.vue 919 B

123456789101112131415161718192021222324252627
  1. <template>
  2. <div class="sidebar-button" @click="$emit('toggle-sidebar')">
  3. <svg class="icon" xmlns="http://www.w3.org/2000/svg" aria-hidden="true" role="img" viewBox="0 0 448 512">
  4. <path fill="currentColor" d="M436 124H12c-6.627 0-12-5.373-12-12V80c0-6.627 5.373-12 12-12h424c6.627 0 12 5.373 12 12v32c0 6.627-5.373 12-12 12zm0 160H12c-6.627 0-12-5.373-12-12v-32c0-6.627 5.373-12 12-12h424c6.627 0 12 5.373 12 12v32c0 6.627-5.373 12-12 12zm0 160H12c-6.627 0-12-5.373-12-12v-32c0-6.627 5.373-12 12-12h424c6.627 0 12 5.373 12 12v32c0 6.627-5.373 12-12 12z" class=""></path>
  5. </svg>
  6. </div>
  7. </template>
  8. <style lang="stylus">
  9. .sidebar-button
  10. cursor pointer
  11. display none
  12. width 1.25rem
  13. height 1.25rem
  14. position absolute
  15. padding 0.6rem
  16. top 0.6rem
  17. left 1rem
  18. .icon
  19. display block
  20. width 1.25rem
  21. height 1.25rem
  22. @media (max-width: $MQMobile)
  23. .sidebar-button
  24. display block
  25. </style>