Why Gemfury? Push, build, and install  RubyGems npm packages Python packages Maven artifacts PHP packages Go Modules Debian packages RPM packages NuGet packages

Repository URL to install this package:

Details    
@twnd/ux / table / _index.scss
Size: Mime:
.twnd-table {
  @apply block bg-white dark:bg-gray-700;
}

.twnd-header-row {
  @apply min-h-fit;
}

.twnd-row, .twnd-footer-row {
  @apply min-h-fit;
}

.twnd-row, .twnd-header-row, .twnd-footer-row {
  @apply flex border-0 border-b-2 border-solid border-gray-200 dark:border-gray-600 items-center box-border;

  &::after {
    @apply inline-block min-h-fit;
    content: '';
  }
}

.twnd-cell, .twnd-header-cell, .twnd-footer-cell {
  &:first-of-type {
    @apply pl-4;

    [dir='rtl'] &:not(:only-of-type) {
      @apply pl-0 pr-4;
    }
  }

  &:last-of-type {
    @apply pr-4;

    [dir='rtl'] &:not(:only-of-type) {
      @apply pr-0 pl-4;
    }
  }
}

.twnd-cell, .twnd-header-cell, .twnd-footer-cell {
  @apply flex flex-1 items-center overflow-hidden break-words min-h-fit;
}