Fix fog images pointer events
This commit is contained in:
parent
840ddab9bc
commit
84a15794e6
3 changed files with 22 additions and 19 deletions
|
@ -167,20 +167,23 @@
|
|||
border: 2px solid yellowgreen;
|
||||
}
|
||||
|
||||
.fog-left {
|
||||
grid-area: 1 / 1 / -1 / -1;
|
||||
align-self: flex-start;
|
||||
width: inherit;
|
||||
transform: rotate(180deg);
|
||||
}
|
||||
.fog-right {
|
||||
grid-area: 1 / 1 / -1 / -1;
|
||||
align-self: flex-end;
|
||||
width: inherit;
|
||||
}
|
||||
.fog-middle {
|
||||
grid-area: 4 / 4 / -4 / -4;
|
||||
// align-self: flex-end;
|
||||
.fog {
|
||||
width: inherit;
|
||||
pointer-events: none;
|
||||
|
||||
&.left {
|
||||
grid-area: 1 / 1 / -1 / -1;
|
||||
align-self: flex-start;
|
||||
transform: rotate(180deg);
|
||||
}
|
||||
|
||||
&.right {
|
||||
grid-area: 1 / 1 / -1 / -1;
|
||||
align-self: flex-end;
|
||||
}
|
||||
|
||||
&.middle {
|
||||
grid-area: 4 / 4 / -4 / -4;
|
||||
}
|
||||
}
|
||||
}
|
Loading…
Add table
Add a link
Reference in a new issue