fix: limit front card width to prevent map overflow before repaint

This commit is contained in:
sashaqred 2020-04-15 13:43:06 +03:00
parent 046540cd78
commit 7e83904ee8
No known key found for this signature in database
GPG key ID: 0DB79F7B24682F4B

View file

@ -10,7 +10,12 @@
cursor: pointer; cursor: pointer;
} }
::ng-deep .flipped { ::ng-deep {
.front-container {
max-width: 100%;
}
.flipped {
.back-container { .back-container {
.flip-icon { .flip-icon {
transform: scaleX(-1); transform: scaleX(-1);
@ -24,3 +29,4 @@
} }
} }
} }
}