fucking css

This commit is contained in:
ntr 2019-04-04 13:55:24 +11:00
parent 1a521f54b0
commit 5bf95154bc
2 changed files with 27 additions and 7 deletions

View File

@ -95,6 +95,7 @@ button.hidden {
} }
svg { svg {
flex: 1;
fill: none; fill: none;
stroke: whitesmoke; stroke: whitesmoke;
stroke-width: 0; stroke-width: 0;
@ -484,19 +485,23 @@ header {
} }
.team-player { .team-player {
display: flex;
flex: 1 0 20%;
height: 90%;
padding: 0; padding: 0;
} }
.team-opponent { .team-opponent {
display: flex;
flex: 1 0 20%;
height: 90%;
padding: 0; padding: 0;
} }
.team-opponent .cryp-box-top {
flex-flow: column;
justify-content: center;
align-items: stretch;
}
.team-opponent .cryp-box-top figure {
flex: 1;
}
.logs { .logs {
flex: 0 0 100%; flex: 0 0 100%;
} }
@ -524,6 +529,11 @@ header {
padding: 0 1em; padding: 0 1em;
} }
/*fucken beats me why needed */
.cryp-box .skills {
height: unset;
}
.menu-instance-btn { .menu-instance-btn {
font-size: 1em; font-size: 1em;
} }
@ -533,4 +543,14 @@ header {
padding: 0; padding: 0;
} }
.selected-skills {
display: none;
}
}
@media (max-width: 1000px) {
.selected-skills {
display: none;
}
} }

View File

@ -206,7 +206,7 @@ function GamePanel(props) {
<div className="selected-skills"> <div className="selected-skills">
{selectedSkills} {selectedSkills}
</div> </div>
<div className="team-opponent"> <div className="team-opponent cryp-list">
{otherTeams.map(OpponentTeam)} {otherTeams.map(OpponentTeam)}
</div> </div>
</main> </main>