@npm_leadtech/legal-lib-components 7.23.3 → 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 +3 -1
- package/dist/src/components/atoms/DropdownInput/DropdownInput.styled.ts +3 -1
- package/dist/src/components/molecules/DesktopSearchBar/DesktopSearchBar.styled.js +2 -1
- package/dist/src/components/molecules/DesktopSearchBar/DesktopSearchBar.styled.ts +2 -1
- 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;
|
|
@@ -138,6 +138,8 @@ export const DropdownInputStyled = styled.div `
|
|
|
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;
|
|
@@ -139,6 +139,8 @@ export const DropdownInputStyled = styled.div`
|
|
|
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;
|
|
@@ -16,11 +16,12 @@ export const DesktopSearchBarStyled = styled.div `
|
|
|
16
16
|
.modal_searchbar__content {
|
|
17
17
|
background-color: var(--others-white);
|
|
18
18
|
border-radius: 8px;
|
|
19
|
-
width:
|
|
19
|
+
width: 300px;
|
|
20
20
|
box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
|
|
21
21
|
|
|
22
22
|
@media ${device['laptop']} {
|
|
23
23
|
padding: 0;
|
|
24
|
+
width: 100%;
|
|
24
25
|
}
|
|
25
26
|
}
|
|
26
27
|
|
|
@@ -17,11 +17,12 @@ export const DesktopSearchBarStyled = styled.div`
|
|
|
17
17
|
.modal_searchbar__content {
|
|
18
18
|
background-color: var(--others-white);
|
|
19
19
|
border-radius: 8px;
|
|
20
|
-
width:
|
|
20
|
+
width: 300px;
|
|
21
21
|
box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
|
|
22
22
|
|
|
23
23
|
@media ${device['laptop']} {
|
|
24
24
|
padding: 0;
|
|
25
|
+
width: 100%;
|
|
25
26
|
}
|
|
26
27
|
}
|
|
27
28
|
|