blob: f20f7b33a689892f6a14eaf437d412a5286963dc (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
|
.wrapper {
@apply relative w-auto h-auto rounded-lg border border-default-300;
}
.video {
@apply rounded-lg;
}
.videoFrame {
@apply absolute
border-double border-large border-default-50
w-[60%] h-[30%]
top-1/2 left-1/2 transform -translate-x-1/2 -translate-y-1/2
pointer-events-none
rounded-md;
}
|