MonsterShop/Assets/UI/InventoryScreen.uss

42 lines
803 B
Plaintext

#Screen {
flex-grow: 1;
/* padding-left: 30px; padding-top: 30px; padding-right: 30px; padding-bottom: 30px; */
flex-direction: row;
flex-basis: auto;
align-content: flex-start;
align-self: auto;
justify-content: space-around;
align-items: stretch;
margin: 30px;
}
.inventoryContainer {
flex-shrink: 0;
flex-grow: 0;
flex-direction: row;
}
.inventory {
width: initial;
aspect-ratio: 0.7;
background-color: rgb(255, 0, 0);
/* max-width: 40%; */
margin: 10px;
}
.inventory > .header {
-unity-text-align: middle-center;
font-size: 24px;
}
.inventory > .container {
}
.inventory > .container .item {
height: auto;
width: 30%;
margin: 10px;
padding: 4px;
background-color: rgb(255, 255, 0);
}