24 lines
372 B
SCSS
24 lines
372 B
SCSS
.mobImg {
|
|
position: absolute;
|
|
z-index: 2;
|
|
&.roamingMonster {
|
|
width: 95%;
|
|
max-height: 80%;
|
|
}
|
|
&.mobLeader {
|
|
z-index: 3;
|
|
width: 70%;
|
|
max-height: 80%;
|
|
top: 40px;
|
|
}
|
|
&.mobMinion {
|
|
width: 60%;
|
|
max-height: 80%;
|
|
right: 0;
|
|
}
|
|
}
|
|
.mobBg {
|
|
position: absolute;
|
|
z-index: 1;
|
|
}
|