_root.scss 509 B

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051
  1. html,
  2. body,
  3. #app {
  4. height: 100%;
  5. overflow: hidden;
  6. }
  7. #app {
  8. display: flex;
  9. flex-direction: column;
  10. }
  11. main {
  12. flex: 1;
  13. overflow-y: auto;
  14. }
  15. // Layouts
  16. .view {
  17. display: flex;
  18. flex-direction: column;
  19. height: 100%;
  20. }
  21. .container-fill {
  22. display: flex;
  23. flex-direction: column;
  24. width: 100%;
  25. height: 100%;
  26. }
  27. // TEMP
  28. .text-edition {
  29. font: {
  30. size: .57em;
  31. weight: normal;
  32. }
  33. }
  34. .clickable {
  35. cursor: pointer;
  36. }
  37. .tags {
  38. > :not(:last-of-type) {
  39. margin-right: .5rem;
  40. }
  41. }