diff --git a/public/index.html b/public/index.html
index 47e896d..364db67 100644
--- a/public/index.html
+++ b/public/index.html
@@ -9,7 +9,7 @@
-
+
diff --git a/src/components/common/modifiers.css b/src/components/common/modifiers.css
index 646d0c0..fe8071e 100644
--- a/src/components/common/modifiers.css
+++ b/src/components/common/modifiers.css
@@ -2,6 +2,10 @@
display: flex;
}
+.modifier-container:nth-child(2n) {
+ background: var(--raised-background);
+}
+
.modifier-amount {
flex-basis: 100px;
flex-shrink: 0;
diff --git a/src/features/tabs/TabFamily.vue b/src/features/tabs/TabFamily.vue
index 5a44cbf..72ccd8b 100644
--- a/src/features/tabs/TabFamily.vue
+++ b/src/features/tabs/TabFamily.vue
@@ -150,10 +150,20 @@ export default defineComponent({
height: calc(100% + 50px);
}
+.modal-body > .tab-family-container:first-child {
+ margin: calc(10px + var(--feature-margin)) 10px 0 10px;
+ border: none;
+}
+
.tab-family-container > :nth-child(2) {
margin-top: 20px;
}
+.modal-body > .tab-family-container > :nth-child(2) {
+ /* TODO Why does it need this instead of 20px? */
+ margin-top: 50px;
+}
+
.tab-family-container[data-v-f18896fc] > :last-child {
margin-bottom: 20px;
}