0
1
Fork 0
hedera-web-mindshore/js/htk/popup/style.scss

36 lines
579 B
SCSS
Raw Normal View History

2022-06-06 08:53:59 +00:00
.htk-popup {
z-index: 200;
display: block;
position: fixed;
overflow: auto;
2022-06-06 08:53:59 +00:00
background-color: white;
border-radius: 10px;
box-shadow: 0 0 0.4em rgba(1, 1, 1, 0.6);
box-sizing: content-box;
&.modal {
2022-06-07 08:19:29 +00:00
position: relative;
max-width: 100%;
max-height: 100%;
2022-06-06 08:53:59 +00:00
}
& > * {
border-radius: 0.1em;
}
}
.htk-background {
position: fixed;
2022-06-07 08:19:29 +00:00
display: flex;
align-items: center;
justify-content: center;
2022-06-06 08:53:59 +00:00
left: 0;
right: 0;
top: 0;
bottom: 0;
z-index: 190;
2022-06-07 08:19:29 +00:00
padding: 20px;
2022-06-06 08:53:59 +00:00
background-color: rgba(1, 1, 1, 0.7);
opacity: 0;
transition: opacity 200ms ease-in-out;
}