22 lines
353 B
SCSS
22 lines
353 B
SCSS
|
@import 'flex.scss';
|
||
|
@import 'colors.scss';
|
||
|
@import 'common.scss';
|
||
|
|
||
|
.uw-ultrawidify-container-root {
|
||
|
|
||
|
// we put our UI _over_ site's player:
|
||
|
z-index: 999999;
|
||
|
position: absolute;
|
||
|
width: 100%;
|
||
|
height: 100%;
|
||
|
top: 0;
|
||
|
left: 0;
|
||
|
|
||
|
// Ensure we're display:block
|
||
|
display: block;
|
||
|
|
||
|
// we are click-through by default:
|
||
|
pointer-events: none;
|
||
|
}
|
||
|
|