42 lines
635 B
SCSS
42 lines
635 B
SCSS
InventoryItem {
|
|
width: 100%;
|
|
//height: 64px;
|
|
background: #2a3d53;
|
|
display: flex;
|
|
gap: 24px;
|
|
align-items: center;
|
|
justify-content: flex-start;
|
|
border: 1px solid #666;
|
|
cursor: pointer;
|
|
transition: background 0.2s;
|
|
border-radius: 12px;
|
|
padding: 12px 24px;
|
|
position: relative;
|
|
|
|
&:hover {
|
|
background: #444;
|
|
}
|
|
|
|
img {
|
|
width: 32px;
|
|
height: 32px;
|
|
}
|
|
|
|
&.name {
|
|
font-size: 20px;
|
|
}
|
|
|
|
&.equipped {
|
|
border: 2px solid #4caf50;
|
|
background: #2e3e2e;
|
|
}
|
|
|
|
.equipped-checkbox {
|
|
position: absolute;
|
|
top: 6px;
|
|
left: 6px;
|
|
pointer-events: none;
|
|
accent-color: #4caf50;
|
|
}
|
|
}
|