Skip to content
Snippets Groups Projects
Unverified Commit 8082d5cb authored by Paul Kaplan's avatar Paul Kaplan Committed by GitHub
Browse files

Merge pull request #2441 from paulkaplan/fix-sprite-layout

Fix the sprite layout by making the layout code apply to the wrapper
parents 7572c594 62f14437
No related branches found
No related tags found
No related merge requests found
......@@ -57,7 +57,7 @@ const SpriteList = function (props) {
return (
<SortableAsset
className={classNames(styles.itemWrapper, {
className={classNames(styles.spriteWrapper, {
[styles.placeholder]: isSpriteDrag && index === draggingIndex})}
index={isSpriteDrag ? ordering.indexOf(index) : index}
key={sprite.name}
......
......@@ -16,8 +16,7 @@
border-bottom: 0;
}
/* In prep for renaming sprite-selector-item to sprite */
.sprite {
.sprite-wrapper {
/*
Our goal is to fit sprites evenly in a row without leftover space.
Flexbox's `space between` property gets us close, but doesn't flow
......@@ -37,6 +36,10 @@
margin: calc($space / 2);
}
.sprite {
height: 100%;
}
.scroll-wrapper {
/*
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment