๐Ÿ“ฆ eureka928 / next-tailwind-landing

๐Ÿ“„ Footer.module.scss ยท 32 lines
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32.footer {
  &List {
    @apply lg:col-start-3 lg:col-span-10;

    &Item {
      h5 {
        @apply text-sm font-medium mb-5 lg:mb-8;
      }

      ul {
        li {
          @apply text-sm text-light-gray mb-3 lg:mb-5;

          &:last-of-type {
            @apply mb-0;
          }
        }
      }
    }

    &Bottom {
      @apply pt-6 lg:flex lg:items-center lg:justify-between;

      ul {
        li {
          @apply text-sm text-light-gray text-center lg:text-left;
        }
      }
    }
  }
}