summaryrefslogtreecommitdiff
path: root/src/components/Config.module.scss
blob: 1c178b4d5da1d24db481edf443c10cb50b7dd730 (plain)
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
@use '~/styles/utils/custom-media' as *;

.root {
  max-width: 1000px;
  padding: 30px 20px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 24px;

  @media (max-width: 768px) {
    padding: 15px 10px;
  }
}

.section {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(320px, 1fr));
  gap: 24px;
  align-items: start;

  @media (max-width: 768px) {
    grid-template-columns: 1fr;
  }
}

.wrapSwitch {
  height: 40px;
  display: flex;
  align-items: center;
}

.sep {
  max-width: 900px;
  padding: 0 15px;
  @media (--breakpoint-not-small) {
    padding: 0 40px;
  }
  > div {
    border-top: 1px dashed var(--color-separator);
  }
}

.label {
  padding: 10px 0 8px;
  font-size: 0.85rem;
  color: var(--color-text-secondary, #999);
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.sectionTitle {
  padding: 10px 0;
  font-weight: bold;
  font-size: 1.1rem;
  margin-bottom: 15px;
  display: flex;
  align-items: center;
  gap: 10px;
  color: var(--color-text-highlight);
}

.card {
  background: var(--bg-log-info-card);
  border: 1px solid var(--color-separator);
  border-radius: 12px;
  padding: 24px;
  margin-bottom: 24px;
  box-shadow: var(--shadow-card);
  transition: border-color 0.2s ease, box-shadow 0.2s ease;

  &:hover {
    border-color: var(--color-focus-blue);
    box-shadow: 0 8px 16px rgba(0, 0, 0, 0.1);
  }
}