@bytebrand/fe-ui-core 4.1.96 → 4.1.98
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/VehicleSmallCard/VehicleData/VehicleTitle/VehicleTitle.styl +5 -7
- package/source/components/VehicleSmallCard/VehicleData/VehicleTitle/VehicleTitle.tsx +1 -1
- package/source/components/_common/MaterialSelect/MaterialSelect.styled.tsx +1 -1
- package/source/components/_common/withStats/withStats.styl +9 -4
package/package.json
CHANGED
|
@@ -2,15 +2,13 @@
|
|
|
2
2
|
|
|
3
3
|
.infoSection
|
|
4
4
|
position: relative
|
|
5
|
-
display: flex
|
|
6
5
|
align-items: center;
|
|
7
6
|
box-sizing: border-box
|
|
8
|
-
|
|
9
|
-
|
|
10
|
-
+media-
|
|
11
|
-
|
|
12
|
-
|
|
13
|
-
|
|
7
|
+
display: block
|
|
8
|
+
padding: 10px 30px 10px 16px
|
|
9
|
+
+media-tablet-landscape-up()
|
|
10
|
+
padding: 7px 6px;
|
|
11
|
+
display: flex
|
|
14
12
|
&.infoSectionSearch
|
|
15
13
|
+media-tablet-landscape-up()
|
|
16
14
|
padding 0;
|
|
@@ -24,7 +24,7 @@ const VehicleTitle: React.FC<IVehicleTitleProps> = ({
|
|
|
24
24
|
|
|
25
25
|
const infoSectionClassName = classnames(
|
|
26
26
|
styles.infoSection,
|
|
27
|
-
{ [styles.infoSectionSearch]: vehicleComponentName === 'search'
|
|
27
|
+
{ [styles.infoSectionSearch]: vehicleComponentName === 'search' },
|
|
28
28
|
{ [styles.infoSectionMyVehicles]: vehicleComponentName === 'myVehicles' }
|
|
29
29
|
);
|
|
30
30
|
|
|
@@ -1,4 +1,3 @@
|
|
|
1
|
-
@import '../../../theme/theme.styl'
|
|
2
1
|
@import '../../../theme/mixins.styl'
|
|
3
2
|
|
|
4
3
|
$xs-height = 24px
|
|
@@ -18,11 +17,14 @@ $indent = 10px
|
|
|
18
17
|
flex-wrap: wrap
|
|
19
18
|
justify-content: flex-start
|
|
20
19
|
font-size: $font-size-default
|
|
21
|
-
padding: 0
|
|
20
|
+
padding: 0 16px
|
|
22
21
|
box-sizing: border-box;
|
|
23
22
|
gap: 0.6em;
|
|
24
23
|
user-select: none;
|
|
25
24
|
|
|
25
|
+
+media-tablet-landscape-up()
|
|
26
|
+
padding: 0 $indent
|
|
27
|
+
|
|
26
28
|
&::after
|
|
27
29
|
position: absolute;
|
|
28
30
|
width: calc(100% - 20px);
|
|
@@ -128,14 +130,17 @@ $indent = 10px
|
|
|
128
130
|
|
|
129
131
|
.topWrapper
|
|
130
132
|
position: absolute
|
|
131
|
-
left:
|
|
132
|
-
right:
|
|
133
|
+
left: 16px
|
|
134
|
+
right: 16px
|
|
133
135
|
top: 5px
|
|
134
136
|
user-select: none
|
|
135
137
|
z-index: 1
|
|
136
138
|
display: flex;
|
|
137
139
|
gap: 10px;
|
|
138
140
|
|
|
141
|
+
+media-tablet-landscape-up()
|
|
142
|
+
left: 10px
|
|
143
|
+
right: 10px
|
|
139
144
|
|
|
140
145
|
.priceDifferencePerCent
|
|
141
146
|
margin-left: auto;
|