📦 EqualifyEverything / equalify

📄 AuditsTable.module.scss · 33 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@use "../global-styles/variables.module.scss";
@use "../global-styles/fonts.scss";

.AuditsTable {
  margin-top:variables.$spacing;
  margin-bottom:calc(variables.$spacing*2);
  table {
    display:table !important;
  }
  .audit-name {
    font-weight: bold;
  }
  .header-sort {
    display: inline-flex;
    align-items: center;
    border:0;
    background: transparent;
    cursor: pointer;
    padding:0;
    font-weight: bold;
    &:hover {
      color: variables.$red;
    }
  }
  .header-label {
    margin-right: calc(variables.$spacing/2);
  }
  .arrow-placeholder {
    width:1em;
    height:1em;
  }
}