aboutsummaryrefslogtreecommitdiffstats
path: root/src/components/molecules/layout/meta.module.scss
blob: 04855457cb3cbd20c5133820713ee2e7b4d242b3 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
@use "@styles/abstracts/mixins" as mix;

.list {
  display: grid;
  grid-template-columns: repeat(1, minmax(0, 1fr));
  gap: var(--spacing-sm);

  @include mix.media("screen") {
    @include mix.dimensions("2xs") {
      grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    @include mix.dimensions("sm") {
      display: flex;
      flex-flow: column nowrap;
      gap: var(--spacing-2xs);
    }
  }
}

.value {
  word-break: break-all;
}