30 lines
551 B
SCSS
30 lines
551 B
SCSS
Inventory {
|
|
display: flex;
|
|
flex-direction: column;
|
|
height: 96vh;
|
|
width: 30%;
|
|
position: absolute;
|
|
top: 20px;
|
|
right: 20px;
|
|
padding: 24px;
|
|
background: linear-gradient(135deg, #0a1a2b 0%, #08111f 100%);
|
|
border: 3px solid #2a3d54;
|
|
border-radius: 14px;
|
|
font-family: 'Orbitron', 'Poppins', sans-serif;
|
|
z-index: 100;
|
|
overflow: hidden;
|
|
pointer-events: all;
|
|
}
|
|
|
|
.inventory-panel {
|
|
overflow-y: scroll;
|
|
display: flex;
|
|
flex-direction: column;
|
|
gap: 12px;
|
|
//background-color: rgba(255, 0, 0, 0.1);
|
|
}
|
|
|
|
|
|
.hidden {
|
|
opacity: 0;
|
|
} |