blob: 97d3e6e7b49b6535ff675e7b645f08626b215a3a (
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
|
@import variables
@import mixins
#popover-container
position: fixed
top: 0
left: 0
width: 100%
height: 100%
background: rgba(0, 0, 0, 0.9)
overflow: auto
z-index: 100
#popover-content
position: fixed
width: 950px
max-width: 95%
max-height: calc(100% - 50px)
top: 5%
left: 50%
transform: translateX(-50%)
padding: 15px
background: #fff
overflow: auto
.popover-form
margin-bottom: 0
|