@bytebrand/fe-ui-core 4.2.171 → 4.2.173
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/package.json +1 -1
- package/source/components/UserDashboardPage/sections/OrderStatusSection/AdditionalOrderInfo.styl +2 -1
- package/source/components/VehicleDetailedSidebar/partials/Properties.tsx +1 -1
- package/source/components/containers/SearchPage/FiltersContainer/FiltersContainer.styl +2 -1
- package/source/components/containers/SearchPage/FiltersContainer/FiltersContainer.tsx +1 -1
package/package.json
CHANGED
package/source/components/UserDashboardPage/sections/OrderStatusSection/AdditionalOrderInfo.styl
CHANGED
|
@@ -2,7 +2,7 @@
|
|
|
2
2
|
@import '../../../../theme/mixins.styl'
|
|
3
3
|
|
|
4
4
|
.container
|
|
5
|
-
padding: 8px 8px
|
|
5
|
+
padding: 8px 8px 0px
|
|
6
6
|
border-top: 1px solid rgba(76,78,100,0.12);
|
|
7
7
|
|
|
8
8
|
+media-tablet-landscape-up()
|
|
@@ -44,6 +44,7 @@
|
|
|
44
44
|
padding-bottom: 8px
|
|
45
45
|
grid-area: addresses
|
|
46
46
|
display: grid
|
|
47
|
+
row-gap: 12px
|
|
47
48
|
|
|
48
49
|
.orderPriceSection
|
|
49
50
|
grid-area: orderPrice
|
|
@@ -82,7 +82,7 @@ const Properties: React.FunctionComponent<IPropertiesProps> = ({ t, car, decorat
|
|
|
82
82
|
|
|
83
83
|
const tabsTitles = [
|
|
84
84
|
{
|
|
85
|
-
title:
|
|
85
|
+
title: `${t(`sidebar.overview`)}`,
|
|
86
86
|
children: (
|
|
87
87
|
<div className={`${styles.tabContentPadding} ${styles.tabContentOverviewPadding}`}>
|
|
88
88
|
{mainProperties.map((property: any, index: number) => (
|
|
@@ -434,7 +434,7 @@ class FiltersContainer extends React.Component<IFiltersContainerProps, {}> {
|
|
|
434
434
|
value={VEHICLE_ID.value}
|
|
435
435
|
onChange={this.onVehicleIdChange}
|
|
436
436
|
size='custom'
|
|
437
|
-
|
|
437
|
+
placeholder='z.B: FCEE67'
|
|
438
438
|
/>
|
|
439
439
|
</div>
|
|
440
440
|
{this.renderFilters()}
|