rustlanges-components 0.1.0

RustLangES components library
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
@layer components {
  .rustlanges-dropdown-tree-subtopic {
    @apply grid w-full grid-cols-[auto_1fr_auto] items-center gap-2 border-b px-6 py-2.5;
    @apply border-b-gray dark:border-b-neutral-600;

    &:last-child {
      @apply border-b-transparent;
    }
  }

  .rustlanges-dropdown-tree-subtopic__title {
    @apply text-neutral-950;
    @apply desktop:text-sm text-xs;
    @apply dark:text-neutral-50;
  }
}