Mirror of https://github.com/roostorg/osprey github.com/roostorg/osprey
1
fork

Configure Feed

Select the types of activity you want to include in your feed.

at main 59 lines 1.0 kB view raw
1.cardHeaderBase { 2 display: flex; 3 flex-direction: row; 4 justify-content: space-between; 5 align-items: center; 6} 7 8.cardHeader { 9 composes: cardHeaderBase; 10 background-color: var(--background-primary); 11 padding: 8px 16px; 12 height: 48px; 13} 14 15.cardHeaderCompact { 16 composes: cardHeaderBase; 17 background-color: var(--background-secondary-alt); 18 padding: 0 16px; 19} 20 21.cardBody { 22 padding: 4px 16px; 23 background-color: var(--background-secondary-alt); 24} 25 26.additionalInfo { 27 text-transform: capitalize; 28 overflow: hidden; 29 text-overflow: ellipsis; 30 white-space: nowrap; 31 max-width: 100%; 32 color: var(--text-light-secondary); 33 font-size: 12px; 34 line-height: 16px; 35} 36 37.overflowTopNList { 38 padding-left: 12px; 39 margin-bottom: 0; 40} 41 42.divider { 43 width: 100%; 44 margin: 4px auto; 45 height: 1px; 46 background-color: var(--divider); 47} 48 49.queryFilterExpand { 50 max-height: 60px; 51 line-height: 20px; 52 overflow: hidden; 53} 54 55:global(pre) { 56 margin-bottom: 0; 57 white-space: pre-wrap; 58 overflow-wrap: break-word; 59}