| 1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374757677787980818283848586878889909192939495 |
- // 좌측 사이드바 자리표시 (MarketSidebar) — 관심종목/즐겨찾기 본구현 전 골격 (D6 그리드 셸)
- .market-sidebar {
- display: flex;
- flex-direction: column;
- height: 100%;
- min-height: 0;
- &__header {
- display: flex;
- align-items: center;
- justify-content: space-between;
- padding: 10px 12px;
- border-bottom: 1px solid var(--border-light);
- }
- &__title {
- font-size: var(--fs-sm);
- font-weight: 700;
- color: var(--text-secondary);
- }
- &__collapse-btn {
- display: inline-flex;
- align-items: center;
- justify-content: center;
- width: 28px;
- height: 28px;
- border: none;
- border-radius: 4px;
- background: transparent;
- color: var(--text-muted);
- cursor: pointer;
- &:hover {
- background: var(--bg-subtle);
- color: var(--text-primary);
- }
- }
- &__body {
- flex: 1;
- min-height: 0;
- overflow-y: auto;
- padding: var(--sp-4);
- }
- &__empty {
- padding: var(--sp-5) 0;
- font-size: var(--fs-xs);
- color: var(--text-muted);
- text-align: center;
- }
- &__icon-placeholder {
- display: flex;
- align-items: center;
- justify-content: center;
- height: 36px;
- color: var(--text-muted);
- }
- &__footer {
- display: flex;
- align-items: center;
- justify-content: center;
- gap: var(--sp-3);
- padding: var(--sp-3);
- border-top: 1px solid var(--border-light);
- }
- &__icon-btn {
- display: inline-flex;
- align-items: center;
- justify-content: center;
- width: 32px;
- height: 32px;
- border: none;
- border-radius: 4px;
- background: transparent;
- color: var(--text-muted);
- cursor: pointer;
- &:hover {
- background: var(--bg-subtle);
- color: var(--text-primary);
- }
- }
- &--collapsed {
- .market-sidebar__header {
- justify-content: center;
- padding: 10px 6px;
- }
- }
- }
|