13 lines
274 B
Plaintext
13 lines
274 B
Plaintext
/* UTKModalBlocker.uss - 모달 블로커 스타일 */
|
|
|
|
.utk-modal-blocker {
|
|
position: absolute;
|
|
left: 0;
|
|
top: 0;
|
|
right: 0;
|
|
bottom: 0;
|
|
background-color: rgba(0, 0, 0, 0.7);
|
|
transition-duration: 200ms;
|
|
transition-property: background-color;
|
|
}
|