styles.css 932 B

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152
  1. body {
  2. margin: 0;
  3. padding: 0;
  4. font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Helvetica, Arial, sans-serif;
  5. }
  6. .graphiql-container {
  7. height: calc(100vh - 40px);
  8. }
  9. .vendure-header {
  10. background-color: #13b7f3;
  11. color: white;
  12. height: 40px;
  13. padding: 0 8px;
  14. display: flex;
  15. justify-content: space-between;
  16. align-items: center;
  17. }
  18. .vendure-header h1 {
  19. margin: 0;
  20. font-size: 18px;
  21. font-weight: 500;
  22. }
  23. .switch-api {
  24. display: flex;
  25. align-items: center;
  26. gap: 8px;
  27. }
  28. .switch-api a {
  29. color: white;
  30. text-decoration: none;
  31. padding: 4px 12px;
  32. border-radius: 4px;
  33. transition: background-color 0.2s;
  34. }
  35. .switch-api a.active {
  36. background-color: rgba(255, 255, 255, 0.2);
  37. font-weight: bold;
  38. }
  39. .switch-api a:hover:not(.active) {
  40. background-color: rgba(255, 255, 255, 0.1);
  41. }
  42. .graphiql-wrapper {
  43. height: calc(100vh - 40px);
  44. }