diff --git a/changelog.md b/changelog.md
index bbe025a..0213520 100644
--- a/changelog.md
+++ b/changelog.md
@@ -1,5 +1,7 @@
# The Modding Tree changelog:
+- Fixed styling challenges.
+
## v2.π: Incrementally Updated - 2/5/21
- Performance improvements.
- Fixed tooltips overlapping with the top display.
diff --git a/docs/challenges.md b/docs/challenges.md
index ae52433..81c6e1b 100644
--- a/docs/challenges.md
+++ b/docs/challenges.md
@@ -5,6 +5,7 @@ Challenges can have fully customizable win conditions. Useful functions for deal
- inChallenge(layer, id): determine if the player is in a given challenge (or another challenge on the same layer that counts as this one).
- hasChallenge(layer, id): determine if the player has completed the challenge.
- challengeCompletions(layer, id): determine how many times the player completed the challenge.
+- maxedChallenge(layer, id): determines if the player has reached the maximum completions.
- challengeEffect(layer, id): Returns the current effects of the challenge, if any.
Challenges are stored in the following format:
diff --git a/js/components.js b/js/components.js
index ddf7b40..0d41123 100644
--- a/js/components.js
+++ b/js/components.js
@@ -125,7 +125,7 @@ function loadVue() {
Vue.component('challenge', {
props: ['layer', 'data'],
template: `
-