aboutsummaryrefslogtreecommitdiff
path: root/client/src/components/AlertToast/AlertToast.module.css
blob: c42ef90fd3f06cf1e8e62a353274bce6fd994285 (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
.background {
  position: fixed;
  bottom: 40px;
  left: 40px;
  z-index: 1000;
  transition: opacity 0.3s ease;
  opacity: 0;
}

.background.active {
  opacity: 1;
}

.active {
  display: flex;
  align-items: center;
  justify-content: center;
}

.container {
  background-color: var(--color-light);
  color: var(--color-dark);
  padding: 10px 20px;
  border-radius: 5px;
}

.container__title {
  margin: 0;
}