_graphql-playground-widget.scss 573 B

12345678910111213141516171819202122232425262728293031
  1. .graphql-playground-widget {
  2. width: 100%;
  3. height: 80vh;
  4. min-height: 600px;
  5. background-color: #172b3a;
  6. display: flex;
  7. align-items: center;
  8. justify-content: center;
  9. color: transparent;
  10. .loading {
  11. font-size: 32px;
  12. font-weight: 200;
  13. color: rgba(255, 255, 255, .6);
  14. margin-left: 20px;
  15. }
  16. img {
  17. width: 78px;
  18. height: 78px;
  19. }
  20. .title {
  21. font-weight: 400;
  22. }
  23. iframe {
  24. width: 100%;
  25. height: 80vh;
  26. min-height: 600px;
  27. border: none;
  28. }
  29. }