mirror of
https://github.com/Acamaeda/The-Modding-Tree.git
synced 2024-11-21 16:13:55 +00:00
Upgrades will expand if needed
This commit is contained in:
parent
9807531872
commit
6a2724ddd1
4 changed files with 8 additions and 3 deletions
|
@ -1,5 +1,8 @@
|
|||
# The Modding Tree changelog:
|
||||
|
||||
# v2.π.1 - 4/7/21
|
||||
- Fixed formatting for some larger numbers.
|
||||
- Upgrades will expand if there is too much text to display.
|
||||
- Fixed styling challenges.
|
||||
- No longer attempts to display a base currency when there is none.
|
||||
|
||||
|
@ -12,6 +15,7 @@
|
|||
- Fixed keeping Decimal values on reset.
|
||||
- Code reorganization and style improvements by fudo.
|
||||
|
||||
|
||||
## v2.3.5 - 12/21/20
|
||||
- Added resetTime, which tracks the time since a layer prestiged or was reset.
|
||||
- A layer node will be highlighted red if one of its subtabs is highlighted red.
|
||||
|
|
|
@ -11,7 +11,7 @@ let modInfo = {
|
|||
|
||||
// Set your version in num and name
|
||||
let VERSION = {
|
||||
num: "2.π",
|
||||
num: "2.π.1",
|
||||
name: "Incrementally Updated",
|
||||
}
|
||||
|
||||
|
|
|
@ -5,7 +5,7 @@ var scrolled = false;
|
|||
|
||||
// Don't change this
|
||||
const TMT_VERSION = {
|
||||
tmtNum: "2.π",
|
||||
tmtNum: "2.π.1",
|
||||
tmtName: "Incrementally Updated"
|
||||
}
|
||||
|
||||
|
|
|
@ -232,12 +232,13 @@ h1, h2, h3, b, input {
|
|||
}
|
||||
|
||||
.upg {
|
||||
height: 120px;
|
||||
min-height: 120px;
|
||||
width: 120px;
|
||||
border-radius: 25%;
|
||||
border: 2px solid;
|
||||
border-color: rgba(0, 0, 0, 0.125);
|
||||
font-size: 10px;
|
||||
overflow: visible;
|
||||
}
|
||||
|
||||
.achievement {
|
||||
|
|
Loading…
Reference in a new issue