diff --git a/src/10th/Roster.jsx b/src/10th/Roster.jsx
index 318a622..b0d62c2 100644
--- a/src/10th/Roster.jsx
+++ b/src/10th/Roster.jsx
@@ -347,10 +347,10 @@ const Unit = ({ unit, index, catalog, onePerPage, forceRules }) => {
diff --git a/src/10th/Weapons.jsx b/src/10th/Weapons.jsx
index 775ef92..9e206d3 100644
--- a/src/10th/Weapons.jsx
+++ b/src/10th/Weapons.jsx
@@ -14,7 +14,7 @@ export const Weapons = ({ title, weapons, modelStats, forceRules }) => {
color: "#fff",
}}
>
-
+ |
{
alignItems: "center",
flexWrap: "wrap",
gap: "0 4px",
+ lineHeight: 1.2,
}}
>
{differentProfiles && selectionName + " - "}
diff --git a/src/index.css b/src/index.css
index e04a744..d09b159 100644
--- a/src/index.css
+++ b/src/index.css
@@ -219,7 +219,7 @@
}
}
- @media screen and (max-width: 600px) {
+ @media screen and (max-width: 640px) {
:root {
font-size: 9px;
line-height: 1.3;
@@ -232,5 +232,13 @@
padding-left: 0;
padding-right: 0;
}
+
+ .weapons-table th {
+ padding: 2px 0.2rem;
+ }
+
+ .weapons-table td {
+ padding: 1px 0.2rem;
+ }
}
}
|