📦 EqualifyEverything / equalify

📄 Audits.module.scss · 42 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
33
34
35
36
37
38
39
40
41
42@use "../global-styles/variables.module.scss";
@use "../global-styles/fonts.scss";

.Audits {
  h2 {
    margin-bottom: calc(variables.$spacing);
    line-height: 1.1em;
    svg {
      color: variables.$black;
    }
  }

  .audits-header {
    display: inline-flex;
    justify-content: space-between;
    flex-direction: row;
    flex-wrap: nowrap;
    align-content: center;
    align-items: center;
    width: 100%;
  }

  .filter-controls {
    display: flex;
    justify-content: space-between;
    margin-bottom: calc(variables.$spacing*2);
  }
  .filter-controls-left {
    display: flex;
  }
  .audits-view-selector {
    display: inline-flex;
    align-content: flex-end;
    align-items: flex-end;
    justify-content: flex-end;

    button[data-state="active"] {
      opacity:1;
    }
  }
}