mirror of
https://github.com/chaoticbackup/chaoticbackup.github.io.git
synced 2026-03-21 17:24:14 -05:00
location displays loyality
This commit is contained in:
parent
e3654b0850
commit
f0298a3371
0
build/styles.css
Normal file
0
build/styles.css
Normal file
|
|
@ -5,7 +5,7 @@
|
|||
<meta name="viewport" content="width=device-width, initial-scale=1">
|
||||
<title>Chaotic Backup</title>
|
||||
<meta name="description" content="Chaotic Backup">
|
||||
<link rel="stylesheet" type="text/css" href="public/style.css">
|
||||
<link rel="stylesheet" type="text/css" href="/build/style.css">
|
||||
<link rel="stylesheet" type="text/css" href="/src/css/legacy.css">
|
||||
<style>
|
||||
html, body, div, span, a, p, ul, li, h1, code, nav {
|
||||
|
|
|
|||
|
|
@ -110,6 +110,7 @@ export default class SearchForm extends React.Component {
|
|||
<label><input type="checkbox" ref={(input) => this.stones.mirage = input}/>Mirage</label>
|
||||
</div>
|
||||
<br />
|
||||
<label>Types:</label>
|
||||
{card_types}
|
||||
<br />
|
||||
{card_tribes}
|
||||
|
|
|
|||
|
|
@ -37,6 +37,10 @@ export default class Creature extends React.Component {
|
|||
<Ability ability={creature.gsx$ability} tribe={creature.gsx$tribe} />
|
||||
<Ability type="brainwashed" tribe={creature.gsx$tribe} ability={creature.gsx$brainwashed} />
|
||||
<Unique data={{unique: creature.gsx$unique, loyal: creature.gsx$loyal, legendary: creature.gsx$legendary, tribe: creature.gsx$tribe}} />
|
||||
{/*chieftain*/
|
||||
creature.gsx$types.includes("Chieftain") &&
|
||||
<span className="chieftain">(Minions use Brainwashed text. Minions may only play Generic Mugic.)<br /></span>
|
||||
}
|
||||
<span className="flavortext">{creature.gsx$flavortext}</span>
|
||||
</div>
|
||||
<br />
|
||||
|
|
@ -51,3 +55,5 @@ export default class Creature extends React.Component {
|
|||
);
|
||||
}
|
||||
}
|
||||
|
||||
|
||||
|
|
|
|||
|
|
@ -22,6 +22,7 @@ export default class Location extends React.Component {
|
|||
</div>
|
||||
<div className="right">
|
||||
<Ability ability={location.gsx$ability} />
|
||||
<Unique data={{unique: location.gsx$unique, loyal: location.gsx$loyal, legendary: location.gsx$legendary}} /><br />
|
||||
<span className="flavortext">{location.gsx$flavortext}</span>
|
||||
</div>
|
||||
</div>
|
||||
|
|
|
|||
|
|
@ -60,7 +60,8 @@
|
|||
color: black !important;
|
||||
}
|
||||
|
||||
.flavortext {
|
||||
.flavortext,
|
||||
.chieftain {
|
||||
font-style: italic;
|
||||
}
|
||||
|
||||
|
|
|
|||
|
|
@ -41,7 +41,7 @@ export default {
|
|||
comments: false,
|
||||
},
|
||||
}),
|
||||
new ExtractTextPlugin('public/style.css', {
|
||||
new ExtractTextPlugin('build/style.css', {
|
||||
allChunks: true
|
||||
}),
|
||||
],
|
||||
|
|
|
|||
Loading…
Reference in New Issue
Block a user