mirror of
https://github.com/thepaperpilot/Super-Auto-Coots.git
synced 2024-11-25 01:41:46 +00:00
Minor fixes
This commit is contained in:
parent
d230d2141c
commit
a422b297f2
2 changed files with 13 additions and 4 deletions
|
@ -128,6 +128,7 @@
|
|||
justify-content: flex-start;
|
||||
align-items: center;
|
||||
margin: 0;
|
||||
image-rendering: pixelated;
|
||||
}
|
||||
|
||||
.stream-types .row > * {
|
||||
|
|
|
@ -432,8 +432,8 @@ export const characters: Record<string, CharacterInfo> = {
|
|||
abilityDescription: char =>
|
||||
jsx(() => (
|
||||
<>
|
||||
<i>Turn started</i>: Gain
|
||||
{char.exp >= 6 ? 6 : char.exp >= 3 ? 4 : 2} <img src={money_small} />
|
||||
<i>Turn started</i>: Gain {char.exp >= 6 ? 6 : char.exp >= 3 ? 4 : 2}{" "}
|
||||
<img src={money_small} />
|
||||
<span style="color: yellow">Moguls</span>
|
||||
</>
|
||||
)),
|
||||
|
@ -1120,7 +1120,7 @@ export const main = createLayer("main", function (this: BaseLayer) {
|
|||
<img
|
||||
src={playAgain}
|
||||
class="button"
|
||||
style="height: 20vmin; image-rendering: pixelated;"
|
||||
style="height: 20vmin; image-rendering: pixelated; cursor: pointer"
|
||||
onClick={() => location.reload()}
|
||||
/>
|
||||
{render(particles)}
|
||||
|
@ -1462,7 +1462,15 @@ export const main = createLayer("main", function (this: BaseLayer) {
|
|||
</Row>
|
||||
</Row>
|
||||
<Row class="stream-types">
|
||||
<Tooltip display="Moguls persist (still gain 10 after battle)">
|
||||
<Tooltip
|
||||
display={jsx(() => (
|
||||
<>
|
||||
<img src={money_small} />
|
||||
<span style="color: yellow">Moguls</span> persist (still gain 10
|
||||
after battle)
|
||||
</>
|
||||
))}
|
||||
>
|
||||
<div
|
||||
class={{
|
||||
"stream-type": true,
|
||||
|
|
Loading…
Reference in a new issue