@npm_leadtech/legal-lib-components 7.12.29 → 7.12.31
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/organisms/DocumentMainMenu/DocumentMainMenu.styled.js +0 -3
- package/dist/src/components/organisms/DocumentMainMenu/DocumentMainMenu.styled.ts +0 -3
- package/dist/src/components/organisms/MenuItems/MenuItems.styled.js +5 -1
- package/dist/src/components/organisms/MenuItems/MenuItems.styled.ts +5 -1
- package/dist/src/components/organisms/NavMenu/NavMenu.styled.js +5 -1
- package/dist/src/components/organisms/NavMenu/NavMenu.styled.ts +5 -1
- package/package.json +1 -1
|
@@ -2,10 +2,7 @@ import styled from 'styled-components';
|
|
|
2
2
|
export const DocumentMainMenuStyled = styled.div `
|
|
3
3
|
border-radius: var(--s-border-radius);
|
|
4
4
|
padding: 0.75rem 1rem;
|
|
5
|
-
margin-top: 0.5rem;
|
|
6
5
|
display: flex;
|
|
7
|
-
/* visibility: hidden;
|
|
8
|
-
opacity: 0; */
|
|
9
6
|
background: var(--others-white);
|
|
10
7
|
transition: all 0.1s ease;
|
|
11
8
|
box-shadow: var(--box-shadow-medium);
|
|
@@ -3,10 +3,7 @@ import styled from 'styled-components'
|
|
|
3
3
|
export const DocumentMainMenuStyled = styled.div`
|
|
4
4
|
border-radius: var(--s-border-radius);
|
|
5
5
|
padding: 0.75rem 1rem;
|
|
6
|
-
margin-top: 0.5rem;
|
|
7
6
|
display: flex;
|
|
8
|
-
/* visibility: hidden;
|
|
9
|
-
opacity: 0; */
|
|
10
7
|
background: var(--others-white);
|
|
11
8
|
transition: all 0.1s ease;
|
|
12
9
|
box-shadow: var(--box-shadow-medium);
|
|
@@ -333,7 +333,11 @@ export const MenuItemsStyled = styled.div `
|
|
|
333
333
|
.navigation-pane__user-menu {
|
|
334
334
|
display: flex;
|
|
335
335
|
align-items: center;
|
|
336
|
-
min-width:
|
|
336
|
+
min-width: 18rem;
|
|
337
|
+
|
|
338
|
+
@media (min-width: ${size.sm}) and (max-width: ${size.lg}) {
|
|
339
|
+
min-width: 12rem;
|
|
340
|
+
}
|
|
337
341
|
|
|
338
342
|
.log-in {
|
|
339
343
|
margin-right: 0.5rem;
|
|
@@ -334,7 +334,11 @@ export const MenuItemsStyled = styled.div`
|
|
|
334
334
|
.navigation-pane__user-menu {
|
|
335
335
|
display: flex;
|
|
336
336
|
align-items: center;
|
|
337
|
-
min-width:
|
|
337
|
+
min-width: 18rem;
|
|
338
|
+
|
|
339
|
+
@media (min-width: ${size.sm}) and (max-width: ${size.lg}) {
|
|
340
|
+
min-width: 12rem;
|
|
341
|
+
}
|
|
338
342
|
|
|
339
343
|
.log-in {
|
|
340
344
|
margin-right: 0.5rem;
|
|
@@ -296,7 +296,11 @@ export const NavMenuStyled = styled.nav `
|
|
|
296
296
|
.navigation-pane__user-menu {
|
|
297
297
|
display: flex;
|
|
298
298
|
align-items: center;
|
|
299
|
-
min-width:
|
|
299
|
+
min-width: 18rem;
|
|
300
|
+
|
|
301
|
+
@media (min-width: ${size.sm}) and (max-width: ${size.lg}) {
|
|
302
|
+
min-width: 12rem;
|
|
303
|
+
}
|
|
300
304
|
|
|
301
305
|
.log-in {
|
|
302
306
|
margin-right: 0.5rem;
|
|
@@ -297,7 +297,11 @@ export const NavMenuStyled = styled.nav`
|
|
|
297
297
|
.navigation-pane__user-menu {
|
|
298
298
|
display: flex;
|
|
299
299
|
align-items: center;
|
|
300
|
-
min-width:
|
|
300
|
+
min-width: 18rem;
|
|
301
|
+
|
|
302
|
+
@media (min-width: ${size.sm}) and (max-width: ${size.lg}) {
|
|
303
|
+
min-width: 12rem;
|
|
304
|
+
}
|
|
301
305
|
|
|
302
306
|
.log-in {
|
|
303
307
|
margin-right: 0.5rem;
|