Jacky Zhao
2023-08-17 58d9dc0528cc5d7232ac7a237c98213ff1075f39
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
41
42
43
44
45
@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: 6em 3fr 1fr;
 
    @media all and (max-width: $mobileBreakpoint) {
      & > .tags {
        display: none;
      }
    }
 
    & > .tags {
      justify-self: end;
      margin-left: 1rem;
    }
 
    & > .desc > h3 > a {
      background-color: transparent;
    }
 
    & > .meta {
      margin: 0;
      flex-basis: 6em;
      opacity: 0.6;
    }
  }
}
 
// modifications in popover context
.popover .section {
  grid-template-columns: 6em 1fr !important;
  & > .tags {
    display: none;
  }
}