f72f71fd32
* initial market - routing - store - load market data * move drawer/drawerSlider / count/star badge to components/ui * filter market categories * shopItem with gem / gold * show count of purchable items * show count of purchable itemsshow drawer with currently owned items + DrawerHeaderTabs-Component * show featured gear * show Gear - filter by class - sort by (type, price, stats) - sort market items * Component: ItemRows - shows only the max items in one row (depending on the available width) * Sell Dialog + Balance Component * generic buy-dialog / attributes grid with highlight * buyItem - hide already owned gear * filter: hide locked/pinned - lock items if not enough gold * API: Sell multiple items * show avatar in buy-equipment-dialog with changed gear * market banner * misc fixes * filter by text * pin/unpin gear store actions * Sell API: amount as query-parameter * Update user.js * fixes * fix sell api amount test * add back stroke/fill currentColor * use scss variables
37 lines
646 B
SCSS
37 lines
646 B
SCSS
|
|
@import '~client/assets/scss/colors.scss';
|
|
|
|
.featured-label {
|
|
width: auto;
|
|
height: 28px;
|
|
border-radius: 2px;
|
|
background-color: #b36213;
|
|
display: inline-flex;
|
|
align-items: center;
|
|
justify-content: center;
|
|
|
|
&.with-border {
|
|
border: solid 2px $yellow-10;
|
|
height: 32px;
|
|
}
|
|
|
|
.rectangle {
|
|
margin: 9px;
|
|
display: inline-block;
|
|
width: 6px;
|
|
height: 6px;
|
|
-webkit-transform: rotate(-45deg);
|
|
transform: rotate(-45deg);
|
|
background-color: $yellow-100;
|
|
border: solid 2px $yellow-10;
|
|
}
|
|
|
|
.text {
|
|
font-size: 12px;
|
|
font-weight: bold;
|
|
line-height: 1.33;
|
|
color: $white;
|
|
flex: 1;
|
|
}
|
|
}
|