#expLogs { padding: 0 32px 32px 32px; h1 { font-size: 22px; margin-bottom: 10px; } .list-header { display: flex; justify-content: space-between; align-items: center; margin-bottom: 10px; flex-wrap: wrap; gap: 0.5rem; .summary { font-size: 16px; } } #expTypeTab { display: flex; button { padding: 0.5rem 1rem; font-size: 0.875rem; color: var(--text-secondary); border-bottom: 2px solid transparent; transition: color 0.2s, border-color 0.2s; &:hover { color: var(--brand-orange); border-bottom-color: var(--brand-orange); } &.active { color: var(--text-link); font-weight: 600; border-bottom-color: var(--text-link); } } } .mypage-list { border-top: 1px solid var(--border-default); margin: 0.75rem 0; article:nth-of-type(1) { background-color: #f9fafb; border-bottom: 1px solid var(--border-default); padding: 0.5rem 0; ul { display: grid; grid-template-columns: clamp(100px, 18%, 160px) 1fr clamp(60px, 12%, 100px) clamp(60px, 12%, 100px); column-gap: 0.75rem; li { text-align: center; font-size: 0.875rem; color: var(--text-secondary); } } @media (max-width: 1024px) { display: none; } } article:nth-of-type(2) { box-sizing: border-box; section { padding: 0.5rem 0; box-sizing: inherit; border-bottom: 1px solid var(--border-default); &:hover { background-color: #faffd1; } // PC ol { display: grid; grid-template-columns: clamp(100px, 18%, 160px) 1fr clamp(60px, 12%, 100px) clamp(60px, 12%, 100px); column-gap: 0.75rem; align-items: center; li { text-align: center; font-size: 0.875rem; &.reason { text-align: left; min-width: 0; overflow: hidden; text-overflow: ellipsis; white-space: nowrap; } } } // Mobile dl { dt { font-size: 1rem; word-break: keep-all; overflow-wrap: break-word; } dd { ul { display: flex; flex-direction: row; flex-wrap: nowrap; justify-content: start; padding-top: 0.4rem; column-gap: 1rem; li { font-size: 0.813rem; color: var(--text-muted); &:last-child { flex-grow: 1; text-align: right; } } } } } @media (max-width: 1024px) { ol { display: none; } dl { display: block; } } } > .empty { text-align: center; padding: 2.5rem; color: var(--text-muted); } } .amount-plus { font-weight: 600; color: var(--color-success); } .amount-minus { font-weight: 600; color: var(--color-danger); } } }