mirror of
https://github.com/picocss/pico.git
synced 2025-02-24 00:39:20 -05:00
This reverts commit 6a6d67dbab230a058b494f6a468ed5f4423f1c4c, reversing changes made to ba4bd765d8fb28466d816c098b03476754c13fc3.
34 lines
509 B
SCSS
34 lines
509 B
SCSS
/**
|
|
* Docs: Modal
|
|
*/
|
|
|
|
dialog.example {
|
|
display: block;
|
|
z-index: inherit;
|
|
position: relative;
|
|
top: inherit;
|
|
right: inherit;
|
|
bottom: inherit;
|
|
left: inherit;
|
|
align-items: inherit;
|
|
justify-content: inherit;
|
|
width: inherit;
|
|
min-width: inherit;
|
|
height: inherit;
|
|
min-height: inherit;
|
|
padding: 0;
|
|
background-color:inherit;
|
|
|
|
article {
|
|
max-width: inherit;
|
|
}
|
|
|
|
&:not([open]),
|
|
&[open=false] {
|
|
display: none;
|
|
}
|
|
}
|
|
|
|
.dialog-is-open body > button {
|
|
filter: blur(0.125rem);
|
|
} |