UNPKG
bottom-sheet
Version:
latest (0.0.0-alpha.1)
0.0.0-alpha.1
0.0.0-alpha.0
Bottom Sheet implemented as a Vanilla Web Component
bottom-sheet
/
dist
/
collection
/
components
/
bottom-sheet-screen
/
bottom-sheet-screen.css
11 lines
(10 loc)
•
227 B
CSS
View Raw
1
2
3
4
5
6
7
8
9
10
11
:host
{
display
: block;
position
: absolute;
top
:
0
;
right
:
0
;
bottom
:
0
;
left
:
0
;
z-index
:
calc
(
var
(--sheet-z-index,
9
) -
1
);
background-color
:
var
(--sheet-screen-background,
rgba
(
0
,
0
,
0
,
0.4
)); }