Remove comments

This commit is contained in:
WBHarry 2026-03-31 17:30:55 +02:00
parent 3b7195fe5e
commit 001e42b0a8
2 changed files with 10 additions and 10 deletions

View file

@ -240,16 +240,16 @@
display: flex;
align-items: center;
justify-content: space-evenly;
gap: 2px; //gap reduced to accomadate new font size and keep the same overall spacing between trait containers
gap: 2px;
.trait-container {
span {
font-size: var(--font-size-10); // reduced font size to fit inside the smaller shield and maintain readability
font-size: var(--font-size-10);
}
width: 65px; //width and height increased to accomadate font size
width: 65px;
height: 65px;
background: url(../assets/svg/trait-shield.svg) no-repeat;
background-size: 100%; //scaling the shield to fit the container
background-size: 100%;
div {
filter: drop-shadow(0 0 3px black);

View file

@ -20,20 +20,20 @@
display: flex;
align-items: center;
justify-content: space-evenly;
gap: 2px; //gap reduced to accomadate new font size and keep the same overall spacing between trait containers
gap: 2px;
.trait-container {
width: 65px; //width and height increased to accomadate font size
width: 65px;
height: 65px;
background: url(../assets/svg/trait-shield.svg) no-repeat;
background-size: 100%; //scaling the shield to fit the container
padding-top: 4px; //aligning the text properly
background-size: 100%;
padding-top: 4px;
display: flex;
flex-direction: column;
align-items: center;
span{
font-size: var(--font-size-10); // font size decreased to fit inside the shield and maintain readability
span {
font-size: var(--font-size-10);
}
div {