Sha256: 88d736e53022d062007cc4e946cae70dddd3642f6204b6031bf6fed264bbaf4e
Contents?: true
Size: 955 Bytes
Versions: 105
Compression:
Stored size: 955 Bytes
Contents
/* Counter */ .Counter { display: inline-block; min-width: var(--base-size-20); /* makes sure it's a circle with just one digit */ padding: 0 6px; font-size: var(--text-body-size-small); font-weight: var(--base-text-weight-medium); line-height: calc(var(--base-size-20) - var(--borderWidth-thin) * 2); /* 20px - 2px for the borders */ color: var(--fgColor-default); text-align: center; background-color: var(--bgColor-neutral-muted, var(--color-neutral-muted)); border: var(--borderWidth-thin) solid var(--counter-borderColor); border-radius: 2em; &:empty { display: none; } /* Is this selector used? could not find any use of it */ & .octicon { vertical-align: text-top; opacity: 0.8; } } .Counter--primary { color: var(--fgColor-onEmphasis); background-color: var(--bgColor-neutral-emphasis); } .Counter--secondary { color: var(--fgColor-muted); background-color: var(--bgColor-neutral-muted); }
Version data entries
105 entries across 105 versions & 2 rubygems