Initialization

This commit is contained in:
Sebastian Fischlmayr 2022-09-14 12:16:36 +02:00
commit 3458f39973
Signed by: Maverick
GPG key ID: 6379E413924A4E77
28 changed files with 6780 additions and 0 deletions

View file

@ -0,0 +1,36 @@
.abilityBox {
display: grid;
grid-template-columns: repeat(6, auto);
grid-auto-flow: row;
justify-content: start;
gap: 0.7em 4px;
align-items: center;
height: fit-content;
width: 100%;
> {
* {
grid-column: span 1;
}
span {
color: #aaaaee;
font-size: 13pt;
margin-right: 20px;
}
p {
color: #aaaaee;
font-size: 10pt;
text-align: center;
vertical-align: middle;
margin-bottom: 0px;
&.abilityLabel {
margin-bottom: -0.5em;
}
}
}
}