summaryrefslogtreecommitdiff
path: root/animism-align/frontend/app/common/modal.css
blob: eb9335419468ebdab9d3223404b4c1897ec7521b (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
.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: #fff;
}