aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--src/client/views/nodes/trails/PresBox.scss6
-rw-r--r--src/client/views/nodes/trails/PresBox.tsx2
2 files changed, 7 insertions, 1 deletions
diff --git a/src/client/views/nodes/trails/PresBox.scss b/src/client/views/nodes/trails/PresBox.scss
index 2c56cf698..58c9b0b42 100644
--- a/src/client/views/nodes/trails/PresBox.scss
+++ b/src/client/views/nodes/trails/PresBox.scss
@@ -38,6 +38,12 @@
// Effect Animations
+.presBox-effects {
+ display: grid;
+ grid-template-columns: auto auto;
+ gap: 8px;
+}
+
.presBox-effect-row {
display: flex;
gap: 8px;
diff --git a/src/client/views/nodes/trails/PresBox.tsx b/src/client/views/nodes/trails/PresBox.tsx
index 2d93f8656..cf97dee1a 100644
--- a/src/client/views/nodes/trails/PresBox.tsx
+++ b/src/client/views/nodes/trails/PresBox.tsx
@@ -2286,7 +2286,7 @@ export class PresBox extends ViewBoxBaseComponent<FieldViewProps>() {
</div>
</div>
{/* Preview Animations */}
- <div>
+ <div className="presBox-effects">
{this.generatedAnimations.map((elem, i) => (
<div
key={i}