Minor regressions

This commit is contained in:
Jeremie Pardou-Piquemal 2020-07-31 15:18:07 +02:00 committed by Jérémie Pardou-Piquemal
parent 25b75645f3
commit 0c01beac18
2 changed files with 2 additions and 3 deletions

View file

@ -27,7 +27,7 @@ const UnflippedForUser = styled.img`
const Label = styled.div`
position: absolute;
top: 1px;
top: -20px;
right: 1px;
padding: 0 3px;
background-color: black;

View file

@ -18,7 +18,6 @@ const ItemWrapper = styled.div.attrs(({ rotation, loaded, locked }) => {
className += " locked";
}
return {
//className: loaded ? "item loaded" : "item",
className,
style: {
transform: `rotate(${rotation}deg)`,
@ -28,7 +27,6 @@ const ItemWrapper = styled.div.attrs(({ rotation, loaded, locked }) => {
display: inline-block;
transition: transform 200ms;
user-select: none;
z-index: ${({ layer }) => (layer || 0) + 3};
opacity: 0.5;
&.loaded {
opacity: 1;
@ -159,6 +157,7 @@ const Item = ({
style={{
transform: `translate(${x}px, ${y}px)`,
display: "inline-block",
zIndex: (layer || 0) + 3,
position: "absolute",
top: 0,
left: 0,