.button { font-family: $body-font-family; font-weight: $font-weight-medium; &.round { border-radius: 1000px; } } select { height: 2.5rem; } .card { margin-bottom: var(--space-small); padding: var(--space-normal); } code { border: 0; font-family: 'ui-monospace', 'SFMono-Regular', 'Menlo', 'Monaco', 'Consolas', '"Liberation Mono"', '"Courier New"', 'monospace'; font-size: $font-size-mini; &.hljs { background: $color-background; border-radius: var(--border-radius-large); padding: $space-two; @apply bg-slate-50 dark:bg-slate-700 text-slate-800 dark:text-slate-100; } } .text-truncate { overflow: hidden; text-overflow: ellipsis; white-space: nowrap; } .text-capitalize { text-transform: capitalize; } .cursor-pointer { cursor: pointer; } // remove when grid gutters are fixed .columns.with-right-space { padding-right: var(--space-normal); } .badge { border-radius: var(--border-radius-normal); } .padding-right-small { padding-right: var(--space-one); }