diff --git a/less/character-sheet.less b/less/character-sheet.less
index 5476b26..7cdc0d8 100644
--- a/less/character-sheet.less
+++ b/less/character-sheet.less
@@ -638,4 +638,13 @@
display: flex;
flex-direction: column;
}
+
+ .defenseTable {
+ border-radius: 10px;
+
+ th {
+ border: 2px black;
+ padding: 5px;
+ }
+ }
}
diff --git a/pokemon.css b/pokemon.css
index d43901c..c5ac424 100644
--- a/pokemon.css
+++ b/pokemon.css
@@ -533,3 +533,10 @@
display: flex;
flex-direction: column;
}
+.pokemon.sheet.characterSheet .defenseTable {
+ border-radius: 10px;
+}
+.pokemon.sheet.characterSheet .defenseTable th {
+ border: 2px black;
+ padding: 5px;
+}
diff --git a/system.json b/system.json
index bfaa0d8..244b166 100644
--- a/system.json
+++ b/system.json
@@ -1,5 +1,5 @@
{
- "version": "0.1.7",
+ "version": "0.1.8",
"id": "pokemon",
"title": "Pokémon TTRPG",
"description": "A Pokémon TTRPG",
diff --git a/system.zip b/system.zip
index 62e1ccd..17f5f00 100644
Binary files a/system.zip and b/system.zip differ
diff --git a/templates/partials/character-sheet-character.hbs b/templates/partials/character-sheet-character.hbs
index 319821f..3501eef 100644
--- a/templates/partials/character-sheet-character.hbs
+++ b/templates/partials/character-sheet-character.hbs
@@ -56,19 +56,19 @@
-
-
-
- {{#each types}}
- | {{this}} |
- {{/each}}
-
-
- {{#each defenses}}
- | {{this}} |
- {{/each}}
-
-
-
+
+
+
+
+ {{#each types}}
+ | {{#short this}} |
+ {{/each}}
+
+
+ {{#each defenses}}
+ | {{this}} |
+ {{/each}}
+
+
\ No newline at end of file