artifacts.module.scss 546 B

12345678910111213141516171819202122232425262728293031
  1. .artifacts {
  2. display: flex;
  3. width: 100%;
  4. height: 100%;
  5. flex-direction: column;
  6. &-header {
  7. display: flex;
  8. align-items: center;
  9. height: 36px;
  10. padding: 20px;
  11. background: var(--second);
  12. }
  13. &-title {
  14. flex: 1;
  15. text-align: center;
  16. font-weight: bold;
  17. font-size: 24px;
  18. }
  19. &-content {
  20. flex-grow: 1;
  21. padding: 0 20px 20px 20px;
  22. background-color: var(--second);
  23. }
  24. }
  25. .artifacts-iframe {
  26. width: 100%;
  27. border: var(--border-in-light);
  28. border-radius: 6px;
  29. background-color: var(--gray);
  30. }