blob: 31adb6f5e16f16ae360a9edd1eb3ec28b103fee8 (
plain)
| 1
2
3
4
5
6
7
8
9
10
11
12
 | @use "../../../styles/abstracts/functions" as fun;
.wrapper {
  > *:not(:first-child) {
    margin-top: fun.convert-px(-2);
  }
}
.body {
  position: sticky;
  top: var(--spacing-xs);
}
 |