37 lines
733 B
Plaintext
37 lines
733 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;
|
|
}
|
|
|
|
.inventory {
|
|
width: initial;
|
|
aspect-ratio: 0.7;
|
|
background-color: rgb(255, 0, 0);
|
|
/* max-width: 40%; */
|
|
margin: 10px;
|
|
flex-grow: 1;
|
|
}
|
|
|
|
.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);
|
|
} |