📦 EqualifyEverything / equalify

📄 Audit.module.scss · 106 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
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106@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;
    }
  }

  .blockers-table-header {
    display: inline-flex;
    align-content: center;
    justify-content: space-between;
    align-items: center;
    width: 100%;
  }
  .blockers-data-table {
    table {
      display: table !important;
      min-height: auto !important;
    }
  }
  .remote-csv-area {
    width:100% !important;
    margin-bottom: calc(variables.$spacing);
  }
  .remote-csv-area-inputs {
    display: inline-flex;
    width:100%;
    justify-content: space-between;
    align-items: center;
    .remote-csv-area-inputs-labeled-input {
      width:80%;
    }
    input {
      width:100%;
    }
    svg {
      min-width: 24px;
      min-height: 24px;
    }
  }
  .urls-card {
    
    thead,tbody {
      display: table !important;
      min-width: 100% !important;
    }
  }
}