The frontend/UI server, written in JS using the MarkoJS library
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.

25 lines
334 B

  1. .right-menu {
  2. position: fixed;
  3. right: 0;
  4. top: 0;
  5. bottom: 0;
  6. width: 28ch;
  7. padding: 0.333em;
  8. padding-bottom: 1em;
  9. text-align: left;
  10. user-select: none;
  11. overflow-x: hidden;
  12. overflow-y: auto;
  13. .showhide {
  14. display: none;
  15. }
  16. }
  17. @media screen and (max-width: 800px) {
  18. .right-menu {
  19. display: none;
  20. }
  21. }