| 1234567891011121314151617181920212223242526272829303132333435363738394041 |
- .crew-config {
- &__name {
- font-weight: 500;
- }
- &__link {
- color: var(--primary);
- text-decoration: none;
- cursor: pointer;
- background: none;
- border: none;
- padding: 0;
- font: inherit;
- font-weight: 500;
- &:hover {
- text-decoration: underline;
- }
- }
- &__desc {
- max-width: 180px;
- overflow: hidden;
- text-overflow: ellipsis;
- white-space: nowrap;
- color: var(--muted-foreground);
- }
- // 목록 테이블 모바일 가로 스크롤
- .studio-page__table-wrap {
- @media (max-width: 768px) {
- overflow-x: auto;
- }
- }
- .studio-page__table {
- @media (max-width: 768px) {
- min-width: 580px;
- }
- }
- }
|