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
33
34
35
36
37
38
39
40
| @use "../../styles/variables.scss" as *;
|
| ul.section-ul {
| list-style: none;
| margin-top: 2em;
| padding-left: 0;
| }
|
| li.section-li {
| margin-bottom: 1em;
|
| & > .section {
| display: grid;
| grid-template-columns: fit-content(8em) 3fr 1fr;
|
| @media all and (max-width: $mobileBreakpoint) {
| & > .tags {
| display: none;
| }
| }
|
| & > .desc > h3 > a {
| background-color: transparent;
| }
|
| & > .meta {
| margin: 0 1em 0 0;
| opacity: 0.6;
| }
| }
| }
|
| // modifications in popover context
| .popover .section {
| grid-template-columns: fit-content(8em) 1fr !important;
|
| & > .tags {
| display: none;
| }
| }
|
|