style.scss 625 B

1234567891011121314151617181920212223242526272829303132333435363738394041
  1. .crew-config {
  2. &__name {
  3. font-weight: 500;
  4. }
  5. &__link {
  6. color: var(--primary);
  7. text-decoration: none;
  8. cursor: pointer;
  9. background: none;
  10. border: none;
  11. padding: 0;
  12. font: inherit;
  13. font-weight: 500;
  14. &:hover {
  15. text-decoration: underline;
  16. }
  17. }
  18. &__desc {
  19. max-width: 180px;
  20. overflow: hidden;
  21. text-overflow: ellipsis;
  22. white-space: nowrap;
  23. color: var(--muted-foreground);
  24. }
  25. // 목록 테이블 모바일 가로 스크롤
  26. .studio-page__table-wrap {
  27. @media (max-width: 768px) {
  28. overflow-x: auto;
  29. }
  30. }
  31. .studio-page__table {
  32. @media (max-width: 768px) {
  33. min-width: 580px;
  34. }
  35. }
  36. }