diff --git a/README.md b/README.md
index 3ea090b..842c9c1 100644
--- a/README.md
+++ b/README.md
@@ -7,4 +7,12 @@ It is supposed to aid storytellers and allow them to quickly set up and capture
[You can try it online!](https://bra1n.github.io/townsquare)
+**Todo:**
+- add night sheet data to roles.json
+- add night sheet view to Grimoire
+- add global reminder space
+- add LICENSE and finish README (shortcuts)
+- (maybe) switch to vectorized SVG token icons
+- allow using custom scripts
+
WORK IN PROGRESS
diff --git a/src/App.vue b/src/App.vue
index 23b7efc..d802c5a 100644
--- a/src/App.vue
+++ b/src/App.vue
@@ -247,7 +247,11 @@ body {
position: relative;
}
-h1, h2, h3, h4, h5 {
+h1,
+h2,
+h3,
+h4,
+h5 {
margin: 0;
text-align: center;
}
diff --git a/src/components/Player.vue b/src/components/Player.vue
index 028ca41..c7c57d3 100644
--- a/src/components/Player.vue
+++ b/src/components/Player.vue
@@ -227,10 +227,14 @@ export default {
span {
display: none;
}
- &:hover span {
- display: inline-block;
- &:hover {
- color: red;
+ &:hover {
+ color: red;
+ span {
+ display: inline-block;
+ color: white;
+ &:hover {
+ color: red;
+ }
}
}
}
diff --git a/src/components/RoleSelectionModal.vue b/src/components/RoleSelectionModal.vue
index c53eeb7..c95a073 100644
--- a/src/components/RoleSelectionModal.vue
+++ b/src/components/RoleSelectionModal.vue
@@ -19,6 +19,10 @@