@npm_leadtech/legal-lib-components 7.23.2 → 7.23.4
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/dist/src/components/atoms/DropdownInput/DropdownInput.styled.js +4 -2
- package/dist/src/components/atoms/DropdownInput/DropdownInput.styled.ts +4 -2
- package/dist/src/components/molecules/DesktopSearchBar/DesktopSearchBar.styled.js +2 -2
- package/dist/src/components/molecules/DesktopSearchBar/DesktopSearchBar.styled.ts +2 -2
- package/package.json +1 -1
|
@@ -125,7 +125,7 @@ export const DropdownInputStyled = styled.div `
|
|
|
125
125
|
width: 100%;
|
|
126
126
|
border-radius: 8px;
|
|
127
127
|
background: var(--others-white);
|
|
128
|
-
|
|
128
|
+
width: 300px;
|
|
129
129
|
position: absolute;
|
|
130
130
|
top: 100%;
|
|
131
131
|
left: 0;
|
|
@@ -134,10 +134,12 @@ export const DropdownInputStyled = styled.div `
|
|
|
134
134
|
border-top: none;
|
|
135
135
|
padding: 1rem 2rem;
|
|
136
136
|
|
|
137
|
-
@media ${device['
|
|
137
|
+
@media ${device['landscape-tablets']} {
|
|
138
138
|
opacity: 1;
|
|
139
139
|
left: 0;
|
|
140
140
|
top: 100%;
|
|
141
|
+
width: 100%;
|
|
142
|
+
min-width: 20rem;
|
|
141
143
|
box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
|
|
142
144
|
margin-top: -15px;
|
|
143
145
|
border: none;
|
|
@@ -126,7 +126,7 @@ export const DropdownInputStyled = styled.div`
|
|
|
126
126
|
width: 100%;
|
|
127
127
|
border-radius: 8px;
|
|
128
128
|
background: var(--others-white);
|
|
129
|
-
|
|
129
|
+
width: 300px;
|
|
130
130
|
position: absolute;
|
|
131
131
|
top: 100%;
|
|
132
132
|
left: 0;
|
|
@@ -135,10 +135,12 @@ export const DropdownInputStyled = styled.div`
|
|
|
135
135
|
border-top: none;
|
|
136
136
|
padding: 1rem 2rem;
|
|
137
137
|
|
|
138
|
-
@media ${device['
|
|
138
|
+
@media ${device['landscape-tablets']} {
|
|
139
139
|
opacity: 1;
|
|
140
140
|
left: 0;
|
|
141
141
|
top: 100%;
|
|
142
|
+
width: 100%;
|
|
143
|
+
min-width: 20rem;
|
|
142
144
|
box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
|
|
143
145
|
margin-top: -15px;
|
|
144
146
|
border: none;
|
|
@@ -15,13 +15,13 @@ export const DesktopSearchBarStyled = styled.div `
|
|
|
15
15
|
|
|
16
16
|
.modal_searchbar__content {
|
|
17
17
|
background-color: var(--others-white);
|
|
18
|
-
padding: 1.5rem;
|
|
19
18
|
border-radius: 8px;
|
|
20
|
-
width:
|
|
19
|
+
width: 300px;
|
|
21
20
|
box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
|
|
22
21
|
|
|
23
22
|
@media ${device['laptop']} {
|
|
24
23
|
padding: 0;
|
|
24
|
+
width: 100%;
|
|
25
25
|
}
|
|
26
26
|
}
|
|
27
27
|
|
|
@@ -16,13 +16,13 @@ export const DesktopSearchBarStyled = styled.div`
|
|
|
16
16
|
|
|
17
17
|
.modal_searchbar__content {
|
|
18
18
|
background-color: var(--others-white);
|
|
19
|
-
padding: 1.5rem;
|
|
20
19
|
border-radius: 8px;
|
|
21
|
-
width:
|
|
20
|
+
width: 300px;
|
|
22
21
|
box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
|
|
23
22
|
|
|
24
23
|
@media ${device['laptop']} {
|
|
25
24
|
padding: 0;
|
|
25
|
+
width: 100%;
|
|
26
26
|
}
|
|
27
27
|
}
|
|
28
28
|
|