corporation textbox now match the rest of the game.

This commit is contained in:
Olivier Gagnon 2021-03-07 13:21:00 -05:00
parent f0ad090cdc
commit 58333c1b46
2 changed files with 4 additions and 1 deletions

@ -248,6 +248,8 @@ export let CONSTANTS: IMap<any> = {
having a limit of 3.
* Fixed an issue where the gang equipment screen would freeze the game if a
script installed augmentations while it is open.
* All BonusTime now displays in the 'H M S' format
* All BonusTime now displays in the 'H M S' format.
* Donation textbox style updated to match the rest of the game.
* Corporation name style updated to match the rest of the game.
`
}

@ -127,6 +127,7 @@ export function createStartCorporationPopup(p: IPlayer) {
});
const nameInput = createElement("input", {
class: 'text-input',
placeholder: "Corporation Name",
}) as HTMLInputElement;