📦 EqualifyEverything / equalify

📄 Audit.module.scss · 65 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
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65@use "../global-styles/variables.module.scss";
@use "../global-styles/fonts.scss";

.Audit {
  margin-bottom: variables.$spacing*2;
  .scan-url-card-header {
    display: inline-flex;
    justify-content: space-between;
    flex-direction: row;
    flex-wrap: nowrap;
    align-content: center;
    align-items: center;
    width: 100%;
  }

  .scan-url-card-header-top{
    display: inline-flex;
    justify-content: space-between;
    width:100%;
  }

  .scan-cards-area {
    margin-top:calc(variables.$spacing*2);
  }

  input[name="email"]{
    padding-top:calc(variables.$spacing);
    //padding-bottom:calc(variables.$spacing);
    width: 180px;
  }
  select[name="frequency"]{
    min-width:100px;
  }
  text, line{
    fill: variables.$paper-dark;
    stroke: variables.$paper-dark;
  }

  .view-errors-button {
    border: 0;
    display: inline-flex;
    flex-direction: row;
    align-content: center;
    justify-content: center;
    align-items: center;
    background: variables.$paper;
    color: variables.$red;
    font-weight: bold;
    border-radius: 999px;
    gap: calc(variables.$spacing/6);
    padding: calc(variables.$spacing/2) calc(variables.$spacing * 2);
    margin-top:variables.$spacing;
    margin-bottom:variables.$spacing;
    cursor: pointer;
    
    svg {
    }
    span {
      display: block;
      white-space: nowrap;
    }
  }

}