Plan stuff. Log stuff.
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

21 lines
318 B

4 years ago
4 years ago
  1. <div class="menu">
  2. <div class="right">
  3. <slot name="right" />
  4. </div>
  5. <slot />
  6. </div>
  7. <style>
  8. div.right {
  9. position: absolute;
  10. right: 0;
  11. text-align: right;
  12. }
  13. div.menu {
  14. background-color: #222;
  15. margin: 0;
  16. user-select: none;
  17. display: flex;
  18. flex-direction: row;
  19. }
  20. </style>