summaryrefslogtreecommitdiff
path: root/animism-align/frontend/app/common/modal.css
blob: 9165eddfd7ab8a09bc64802f4b27c107f12007ea (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
.modal {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 20;
  background: rgba(0,0,0,0.8);
  display: none;
}
.modal.visible {
  display: flex;
  justify-content: center;
  align-items: center;
}
.modal > div {
  background: #213;
  padding: 1rem;
}