@npm_leadtech/legal-lib-components 7.19.1 → 7.19.2
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/css/styles.css +15 -30
- package/dist/src/components/atoms/CardPane/CardPane.styled.js +1 -1
- package/dist/src/components/atoms/CardPane/CardPane.styled.ts +1 -1
- package/dist/src/components/atoms/ContactInformationHeader/ContactInformationHeader.d.ts +3 -0
- package/dist/src/components/atoms/ContactInformationHeader/ContactInformationHeader.js +5 -0
- package/dist/src/components/atoms/ContactInformationHeader/ContactInformationHeader.styled.d.ts +1 -0
- package/dist/src/components/atoms/ContactInformationHeader/ContactInformationHeader.styled.js +21 -0
- package/dist/src/components/atoms/ContactInformationHeader/ContactInformationHeader.styled.ts +22 -0
- package/dist/src/components/atoms/ContactInformationHeader/ContactInformationHeader.tsx +14 -0
- package/dist/src/components/atoms/ContactInformationHeader/ContactInformationHeaderProps.d.ts +4 -0
- package/dist/src/components/atoms/ContactInformationHeader/ContactInformationHeaderProps.ts +4 -0
- package/dist/src/components/atoms/ContactInformationHeader/index.d.ts +2 -0
- package/dist/src/components/atoms/ContactInformationHeader/index.js +2 -0
- package/dist/src/components/atoms/ContactInformationHeader/index.ts +2 -0
- package/dist/src/components/atoms/MobileTrigger/MobileTrigger.d.ts +3 -0
- package/dist/src/components/atoms/MobileTrigger/MobileTrigger.js +5 -0
- package/dist/src/components/atoms/MobileTrigger/MobileTrigger.styled.d.ts +5 -0
- package/dist/src/components/atoms/MobileTrigger/MobileTrigger.styled.js +8 -0
- package/dist/src/components/atoms/MobileTrigger/MobileTrigger.styled.ts +13 -0
- package/dist/src/components/atoms/MobileTrigger/MobileTrigger.tsx +11 -0
- package/dist/src/components/atoms/MobileTrigger/MobileTriggerProps.d.ts +6 -0
- package/dist/src/components/atoms/MobileTrigger/MobileTriggerProps.ts +6 -0
- package/dist/src/components/atoms/MobileTrigger/index.d.ts +2 -0
- package/dist/src/components/atoms/MobileTrigger/index.js +2 -0
- package/dist/src/components/atoms/MobileTrigger/index.ts +2 -0
- package/dist/src/components/atoms/PhoneNumberDisplay/PhoneNumberDisplay.d.ts +3 -0
- package/dist/src/components/atoms/PhoneNumberDisplay/PhoneNumberDisplay.js +6 -0
- package/dist/src/components/atoms/PhoneNumberDisplay/PhoneNumberDisplay.styled.d.ts +1 -0
- package/dist/src/components/atoms/PhoneNumberDisplay/PhoneNumberDisplay.styled.js +17 -0
- package/dist/src/components/atoms/PhoneNumberDisplay/PhoneNumberDisplay.styled.ts +18 -0
- package/dist/src/components/atoms/PhoneNumberDisplay/PhoneNumberDisplay.tsx +15 -0
- package/dist/src/components/atoms/PhoneNumberDisplay/PhoneNumberDisplayProps.d.ts +3 -0
- package/dist/src/components/atoms/PhoneNumberDisplay/PhoneNumberDisplayProps.ts +3 -0
- package/dist/src/components/atoms/PhoneNumberDisplay/index.d.ts +2 -0
- package/dist/src/components/atoms/PhoneNumberDisplay/index.js +2 -0
- package/dist/src/components/atoms/PhoneNumberDisplay/index.ts +2 -0
- package/dist/src/components/atoms/SearchSelect/SearchSelect.styled.js +1 -1
- package/dist/src/components/atoms/SearchSelect/SearchSelect.styled.ts +1 -1
- package/dist/src/components/atoms/index.d.ts +3 -0
- package/dist/src/components/atoms/index.js +3 -0
- package/dist/src/components/atoms/index.ts +3 -0
- package/dist/src/components/molecules/ContactInfo/ContactInfo.styled.js +1 -1
- package/dist/src/components/molecules/ContactInfo/ContactInfo.styled.ts +1 -1
- package/dist/src/components/molecules/HelpPanelList/HelpPanelList.d.ts +3 -0
- package/dist/src/components/molecules/HelpPanelList/HelpPanelList.js +5 -0
- package/dist/src/components/molecules/HelpPanelList/HelpPanelList.styled.d.ts +4 -0
- package/dist/src/components/molecules/HelpPanelList/HelpPanelList.styled.js +34 -0
- package/dist/src/components/molecules/HelpPanelList/HelpPanelList.styled.ts +38 -0
- package/dist/src/components/molecules/HelpPanelList/HelpPanelList.tsx +18 -0
- package/dist/src/components/molecules/HelpPanelList/HelpPanelListProps.d.ts +9 -0
- package/dist/src/components/molecules/HelpPanelList/HelpPanelListProps.js +1 -0
- package/dist/src/components/molecules/HelpPanelList/HelpPanelListProps.ts +10 -0
- package/dist/src/components/molecules/HelpPanelList/index.d.ts +2 -0
- package/dist/src/components/molecules/HelpPanelList/index.js +2 -0
- package/dist/src/components/molecules/HelpPanelList/index.ts +2 -0
- package/dist/src/components/molecules/HelpSection/HelpSection.d.ts +3 -0
- package/dist/src/components/molecules/HelpSection/HelpSection.js +5 -0
- package/dist/src/components/molecules/HelpSection/HelpSection.styled.d.ts +3 -0
- package/dist/src/components/molecules/HelpSection/HelpSection.styled.js +64 -0
- package/dist/src/components/molecules/HelpSection/HelpSection.styled.ts +66 -0
- package/dist/src/components/molecules/HelpSection/HelpSection.tsx +18 -0
- package/dist/src/components/molecules/HelpSection/HelpSectionProps.d.ts +6 -0
- package/dist/src/components/molecules/HelpSection/HelpSectionProps.js +1 -0
- package/dist/src/components/molecules/HelpSection/HelpSectionProps.ts +7 -0
- package/dist/src/components/molecules/HelpSection/index.d.ts +2 -0
- package/dist/src/components/molecules/HelpSection/index.js +2 -0
- package/dist/src/components/molecules/HelpSection/index.ts +2 -0
- package/dist/src/components/molecules/NavBarDropDown/NavBarDropDown.tsx +1 -1
- package/dist/src/components/molecules/SocialLinks/SocialLinks.js +1 -5
- package/dist/src/components/molecules/SocialLinks/SocialLinks.tsx +7 -11
- package/dist/src/components/molecules/TextInput/TextInput.scss +15 -31
- package/dist/src/components/molecules/TextInput/stories/TextInput.stories.tsx +2 -13
- package/dist/src/components/molecules/index.d.ts +2 -2
- package/dist/src/components/molecules/index.js +2 -2
- package/dist/src/components/molecules/index.ts +2 -2
- package/dist/src/components/organisms/ContactJumbotron/ContactJumbotron.js +3 -3
- package/dist/src/components/organisms/ContactJumbotron/ContactJumbotron.styled.js +1 -0
- package/dist/src/components/organisms/ContactJumbotron/ContactJumbotron.styled.ts +1 -0
- package/dist/src/components/organisms/ContactJumbotron/ContactJumbotron.tsx +6 -4
- package/dist/src/components/organisms/ContactJumbotron/ContactJumbotronProps.types.d.ts +3 -2
- package/dist/src/components/organisms/ContactJumbotron/ContactJumbotronProps.types.ts +4 -2
- package/dist/src/components/organisms/DesktopMenu/DesktopMenu.d.ts +3 -0
- package/dist/src/components/organisms/DesktopMenu/DesktopMenu.js +7 -0
- package/dist/src/components/organisms/DesktopMenu/DesktopMenu.styled.d.ts +1 -0
- package/dist/src/components/organisms/DesktopMenu/DesktopMenu.styled.js +16 -0
- package/dist/src/components/organisms/DesktopMenu/DesktopMenu.styled.ts +17 -0
- package/dist/src/components/organisms/DesktopMenu/DesktopMenu.tsx +15 -0
- package/dist/src/components/organisms/DesktopMenu/DesktopMenuProps.d.ts +7 -0
- package/dist/src/components/organisms/DesktopMenu/DesktopMenuProps.js +1 -0
- package/dist/src/components/organisms/DesktopMenu/DesktopMenuProps.ts +8 -0
- package/dist/src/components/organisms/DesktopMenu/index.d.ts +2 -0
- package/dist/src/components/organisms/DesktopMenu/index.js +2 -0
- package/dist/src/components/organisms/DesktopMenu/index.ts +2 -0
- package/dist/src/components/organisms/MobileMenu/MobileMenu.d.ts +3 -0
- package/dist/src/components/organisms/MobileMenu/MobileMenu.js +9 -0
- package/dist/src/components/organisms/MobileMenu/MobileMenu.styled.d.ts +7 -0
- package/dist/src/components/organisms/MobileMenu/MobileMenu.styled.js +23 -0
- package/dist/src/components/organisms/MobileMenu/MobileMenu.styled.ts +30 -0
- package/dist/src/components/organisms/MobileMenu/MobileMenu.tsx +54 -0
- package/dist/src/components/organisms/MobileMenu/MobileMenuProps.d.ts +16 -0
- package/dist/src/components/organisms/MobileMenu/MobileMenuProps.js +1 -0
- package/dist/src/components/organisms/MobileMenu/MobileMenuProps.ts +18 -0
- package/dist/src/components/organisms/MobileMenu/index.d.ts +2 -0
- package/dist/src/components/organisms/MobileMenu/index.js +2 -0
- package/dist/src/components/organisms/MobileMenu/index.ts +2 -0
- package/dist/src/components/organisms/MobilePanel/MobilePanel.d.ts +3 -0
- package/dist/src/components/organisms/MobilePanel/MobilePanel.js +4 -0
- package/dist/src/components/organisms/MobilePanel/MobilePanel.styled.d.ts +8 -0
- package/dist/src/components/organisms/MobilePanel/MobilePanel.styled.js +27 -0
- package/dist/src/components/organisms/MobilePanel/MobilePanel.styled.ts +35 -0
- package/dist/src/components/organisms/MobilePanel/MobilePanel.tsx +13 -0
- package/dist/src/components/organisms/MobilePanel/MobilePanelProps.d.ts +7 -0
- package/dist/src/components/organisms/MobilePanel/MobilePanelProps.js +1 -0
- package/dist/src/components/organisms/MobilePanel/MobilePanelProps.ts +7 -0
- package/dist/src/components/organisms/MobilePanel/index.d.ts +2 -0
- package/dist/src/components/organisms/MobilePanel/index.js +2 -0
- package/dist/src/components/organisms/MobilePanel/index.ts +2 -0
- package/dist/src/components/organisms/index.d.ts +3 -0
- package/dist/src/components/organisms/index.js +3 -0
- package/dist/src/components/organisms/index.ts +3 -0
- package/dist/src/components/pages/ContactUsPage/ContactUsPage.js +3 -3
- package/dist/src/components/pages/ContactUsPage/ContactUsPage.tsx +3 -3
- package/dist/src/components/pages/ContactUsPage/ContactUsPageProps.d.ts +2 -2
- package/dist/src/components/pages/ContactUsPage/ContactUsPageProps.ts +2 -2
- package/dist/src/components/sections/AppHeader/AppHeader.d.ts +4 -0
- package/dist/src/components/sections/AppHeader/AppHeader.js +8 -0
- package/dist/src/components/sections/AppHeader/AppHeader.scss +32 -0
- package/dist/src/components/sections/AppHeader/AppHeader.styled.d.ts +2 -0
- package/dist/src/components/sections/AppHeader/AppHeader.styled.js +35 -0
- package/dist/src/components/sections/AppHeader/AppHeader.styled.ts +36 -0
- package/dist/src/components/sections/AppHeader/AppHeader.tsx +58 -0
- package/dist/src/components/sections/AppHeader/AppHeaderProps.d.ts +26 -0
- package/dist/src/components/sections/AppHeader/AppHeaderProps.js +1 -0
- package/dist/src/components/sections/AppHeader/AppHeaderProps.ts +27 -0
- package/dist/src/components/sections/AppHeader/index.d.ts +2 -0
- package/dist/src/components/sections/AppHeader/index.js +2 -0
- package/dist/src/components/sections/AppHeader/index.ts +2 -0
- package/dist/src/components/sections/ContactSection/ContactSection.styled.js +0 -2
- package/dist/src/components/sections/ContactSection/ContactSection.styled.ts +0 -2
- package/dist/src/components/sections/index.d.ts +1 -0
- package/dist/src/components/sections/index.js +1 -0
- package/dist/src/components/sections/index.ts +1 -0
- package/dist/src/hooks/useIntersectionObserver.d.ts +5 -7
- package/dist/src/hooks/useIntersectionObserver.js +7 -5
- package/dist/src/hooks/useIntersectionObserver.tsx +10 -12
- package/dist/tsconfig.build.tsbuildinfo +1 -1
- package/package.json +2 -1
- package/dist/images/componentsSvg/InfoLocationSvg.d.ts +0 -2
- package/dist/images/componentsSvg/InfoLocationSvg.js +0 -4
- package/dist/images/componentsSvg/InfoLocationSvg.tsx +0 -14
- package/dist/images/componentsSvg/InfoMailSvg.d.ts +0 -2
- package/dist/images/componentsSvg/InfoMailSvg.js +0 -4
- package/dist/images/componentsSvg/InfoMailSvg.tsx +0 -12
- package/dist/images/componentsSvg/InfoPhoneSvg.d.ts +0 -2
- package/dist/images/componentsSvg/InfoPhoneSvg.js +0 -4
- package/dist/images/componentsSvg/InfoPhoneSvg.tsx +0 -12
- package/dist/src/components/molecules/ContactInfoBox/ContactInfoBox.d.ts +0 -3
- package/dist/src/components/molecules/ContactInfoBox/ContactInfoBox.js +0 -6
- package/dist/src/components/molecules/ContactInfoBox/ContactInfoBox.styled.d.ts +0 -1
- package/dist/src/components/molecules/ContactInfoBox/ContactInfoBox.styled.js +0 -23
- package/dist/src/components/molecules/ContactInfoBox/ContactInfoBox.styled.ts +0 -24
- package/dist/src/components/molecules/ContactInfoBox/ContactInfoBox.tsx +0 -15
- package/dist/src/components/molecules/ContactInfoBox/ContactInfoBoxProps.types.d.ts +0 -4
- package/dist/src/components/molecules/ContactInfoBox/ContactInfoBoxProps.types.ts +0 -4
- package/dist/src/components/molecules/ContactInfoBox/index.d.ts +0 -2
- package/dist/src/components/molecules/ContactInfoBox/index.js +0 -1
- package/dist/src/components/molecules/ContactInfoBox/index.ts +0 -2
- package/dist/src/components/molecules/ContactInfoBoxMobile/ContactInfoBoxMobile.d.ts +0 -3
- package/dist/src/components/molecules/ContactInfoBoxMobile/ContactInfoBoxMobile.js +0 -6
- package/dist/src/components/molecules/ContactInfoBoxMobile/ContactInfoBoxMobile.styled.d.ts +0 -1
- package/dist/src/components/molecules/ContactInfoBoxMobile/ContactInfoBoxMobile.styled.js +0 -23
- package/dist/src/components/molecules/ContactInfoBoxMobile/ContactInfoBoxMobile.styled.ts +0 -24
- package/dist/src/components/molecules/ContactInfoBoxMobile/ContactInfoBoxMobile.tsx +0 -15
- package/dist/src/components/molecules/ContactInfoBoxMobile/ContactInfoBoxMobileProps.types.d.ts +0 -4
- package/dist/src/components/molecules/ContactInfoBoxMobile/ContactInfoBoxMobileProps.types.ts +0 -4
- package/dist/src/components/molecules/ContactInfoBoxMobile/index.d.ts +0 -2
- package/dist/src/components/molecules/ContactInfoBoxMobile/index.js +0 -1
- package/dist/src/components/molecules/ContactInfoBoxMobile/index.ts +0 -2
- package/dist/src/components/molecules/ContactInfoCard/ContactInfoCard.d.ts +0 -3
- package/dist/src/components/molecules/ContactInfoCard/ContactInfoCard.js +0 -19
- package/dist/src/components/molecules/ContactInfoCard/ContactInfoCard.styled.d.ts +0 -1
- package/dist/src/components/molecules/ContactInfoCard/ContactInfoCard.styled.js +0 -77
- package/dist/src/components/molecules/ContactInfoCard/ContactInfoCard.styled.ts +0 -78
- package/dist/src/components/molecules/ContactInfoCard/ContactInfoCard.tsx +0 -58
- package/dist/src/components/molecules/ContactInfoCard/ContactInfoCardProps.d.ts +0 -7
- package/dist/src/components/molecules/ContactInfoCard/ContactInfoCardProps.ts +0 -8
- package/dist/src/components/molecules/ContactInfoCard/index.d.ts +0 -2
- package/dist/src/components/molecules/ContactInfoCard/index.js +0 -2
- package/dist/src/components/molecules/ContactInfoCard/index.ts +0 -2
- /package/dist/src/components/{molecules/ContactInfoBox/ContactInfoBoxProps.types.js → atoms/ContactInformationHeader/ContactInformationHeaderProps.js} +0 -0
- /package/dist/src/components/{molecules/ContactInfoBoxMobile/ContactInfoBoxMobileProps.types.js → atoms/MobileTrigger/MobileTriggerProps.js} +0 -0
- /package/dist/src/components/{molecules/ContactInfoCard/ContactInfoCardProps.js → atoms/PhoneNumberDisplay/PhoneNumberDisplayProps.js} +0 -0
|
@@ -0,0 +1,30 @@
|
|
|
1
|
+
import styled from 'styled-components'
|
|
2
|
+
|
|
3
|
+
type MobileMenuTriggerProps = {
|
|
4
|
+
isActive: boolean
|
|
5
|
+
}
|
|
6
|
+
|
|
7
|
+
export const MobileMenuWrapper = styled.nav`
|
|
8
|
+
display: flex;
|
|
9
|
+
justify-content: flex-end;
|
|
10
|
+
align-items: center;
|
|
11
|
+
gap: 1rem;
|
|
12
|
+
@media (min-width: 720px) {
|
|
13
|
+
display: none;
|
|
14
|
+
}
|
|
15
|
+
`
|
|
16
|
+
|
|
17
|
+
export const MobilePersonalTrigger = styled.div<MobileMenuTriggerProps>`
|
|
18
|
+
border: 1px solid var(--neutral-neutral-3);
|
|
19
|
+
border-radius: 4px;
|
|
20
|
+
padding: 4px 8px;
|
|
21
|
+
cursor: pointer;
|
|
22
|
+
background-color: ${(props) => (props.isActive ? 'var(--primary-main)' : 'var(--others-white)')};
|
|
23
|
+
`
|
|
24
|
+
|
|
25
|
+
export const UserActionsPanel = styled.div`
|
|
26
|
+
padding: 1.5rem 0;
|
|
27
|
+
display: flex;
|
|
28
|
+
align-items: center;
|
|
29
|
+
justify-content: center;
|
|
30
|
+
`
|
|
@@ -0,0 +1,54 @@
|
|
|
1
|
+
// src/components/organisms/MobileMenu/MobileMenu.tsx
|
|
2
|
+
import { ContactInformation, MobileTrigger } from '../../atoms'
|
|
3
|
+
import { MobileMenuWrapper, UserActionsPanel } from './MobileMenu.styled'
|
|
4
|
+
import { HelpPanelList } from '../../molecules'
|
|
5
|
+
import { MobileMenuProps } from './MobileMenuProps'
|
|
6
|
+
import { MobilePanel } from '../MobilePanel'
|
|
7
|
+
import React from 'react'
|
|
8
|
+
|
|
9
|
+
export const MobileMenu: React.FC<MobileMenuProps> = ({
|
|
10
|
+
isHelpActive,
|
|
11
|
+
isPersonalActive,
|
|
12
|
+
toggleMenuHelpOpen,
|
|
13
|
+
toggleMenuPersonalOpen,
|
|
14
|
+
menuList,
|
|
15
|
+
sitePhone,
|
|
16
|
+
scheduleText,
|
|
17
|
+
homeUrl,
|
|
18
|
+
userActions,
|
|
19
|
+
helpTriggerImage,
|
|
20
|
+
userTriggerImage,
|
|
21
|
+
closeText,
|
|
22
|
+
showTopBar
|
|
23
|
+
}) => {
|
|
24
|
+
return (
|
|
25
|
+
<MobileMenuWrapper>
|
|
26
|
+
<MobileTrigger
|
|
27
|
+
onClick={toggleMenuHelpOpen}
|
|
28
|
+
isActive={isHelpActive}
|
|
29
|
+
imageUrl={helpTriggerImage}
|
|
30
|
+
altText='Help and contact menu'
|
|
31
|
+
/>
|
|
32
|
+
<MobileTrigger
|
|
33
|
+
onClick={toggleMenuPersonalOpen}
|
|
34
|
+
isActive={isPersonalActive}
|
|
35
|
+
imageUrl={userTriggerImage}
|
|
36
|
+
altText='User actions menu'
|
|
37
|
+
/>
|
|
38
|
+
|
|
39
|
+
<MobilePanel showTopBar={showTopBar} closeText={closeText} isActive={isHelpActive} onClose={toggleMenuHelpOpen}>
|
|
40
|
+
{menuList?.items?.length && <HelpPanelList {...menuList} homeUrl={homeUrl} />}
|
|
41
|
+
{sitePhone && <ContactInformation phoneNumber={sitePhone} scheduleText={scheduleText} />}
|
|
42
|
+
</MobilePanel>
|
|
43
|
+
|
|
44
|
+
<MobilePanel
|
|
45
|
+
showTopBar={showTopBar}
|
|
46
|
+
closeText={closeText}
|
|
47
|
+
isActive={isPersonalActive}
|
|
48
|
+
onClose={toggleMenuPersonalOpen}
|
|
49
|
+
>
|
|
50
|
+
<UserActionsPanel>{userActions}</UserActionsPanel>
|
|
51
|
+
</MobilePanel>
|
|
52
|
+
</MobileMenuWrapper>
|
|
53
|
+
)
|
|
54
|
+
}
|
|
@@ -0,0 +1,16 @@
|
|
|
1
|
+
import { HelpPanelListProps } from 'src/components/molecules/HelpPanelList/HelpPanelListProps';
|
|
2
|
+
export interface MobileMenuProps {
|
|
3
|
+
isHelpActive: boolean;
|
|
4
|
+
isPersonalActive: boolean;
|
|
5
|
+
toggleMenuHelpOpen: () => void;
|
|
6
|
+
toggleMenuPersonalOpen: () => void;
|
|
7
|
+
menuList?: HelpPanelListProps;
|
|
8
|
+
sitePhone?: string;
|
|
9
|
+
scheduleText?: string;
|
|
10
|
+
homeUrl?: string;
|
|
11
|
+
userActions?: React.ReactNode;
|
|
12
|
+
helpTriggerImage: string;
|
|
13
|
+
userTriggerImage: string;
|
|
14
|
+
closeText: string;
|
|
15
|
+
showTopBar?: boolean;
|
|
16
|
+
}
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
export {};
|
|
@@ -0,0 +1,18 @@
|
|
|
1
|
+
import { HelpPanelListProps } from 'src/components/molecules/HelpPanelList/HelpPanelListProps'
|
|
2
|
+
|
|
3
|
+
export interface MobileMenuProps {
|
|
4
|
+
isHelpActive: boolean
|
|
5
|
+
isPersonalActive: boolean
|
|
6
|
+
toggleMenuHelpOpen: () => void
|
|
7
|
+
toggleMenuPersonalOpen: () => void
|
|
8
|
+
|
|
9
|
+
menuList?: HelpPanelListProps
|
|
10
|
+
sitePhone?: string
|
|
11
|
+
scheduleText?: string
|
|
12
|
+
homeUrl?: string
|
|
13
|
+
userActions?: React.ReactNode
|
|
14
|
+
helpTriggerImage: string
|
|
15
|
+
userTriggerImage: string
|
|
16
|
+
closeText: string
|
|
17
|
+
showTopBar?: boolean
|
|
18
|
+
}
|
|
@@ -0,0 +1,4 @@
|
|
|
1
|
+
import { jsx as _jsx, jsxs as _jsxs } from "react/jsx-runtime";
|
|
2
|
+
// src/components/molecules/MobilePanel/MobilePanel.tsx
|
|
3
|
+
import { CloseButton, PanelMenu, PanelMobileWrapper } from './MobilePanel.styled';
|
|
4
|
+
export const MobilePanel = ({ showTopBar, isActive, onClose, children, closeText }) => (_jsx(PanelMobileWrapper, { isActive: isActive, showTopBar: showTopBar, children: _jsxs(PanelMenu, { children: [children, _jsx(CloseButton, { onClick: onClose, children: closeText })] }) }));
|
|
@@ -0,0 +1,8 @@
|
|
|
1
|
+
type MobileMenuTriggerProps = {
|
|
2
|
+
isActive: boolean;
|
|
3
|
+
showTopBar?: boolean;
|
|
4
|
+
};
|
|
5
|
+
export declare const PanelMobileWrapper: import("styled-components/dist/types").IStyledComponentBase<"web", import("styled-components/dist/types").Substitute<import("react").DetailedHTMLProps<import("react").HTMLAttributes<HTMLDivElement>, HTMLDivElement>, MobileMenuTriggerProps>> & string;
|
|
6
|
+
export declare const PanelMenu: import("styled-components/dist/types").IStyledComponentBase<"web", import("styled-components").FastOmit<import("react").DetailedHTMLProps<import("react").HTMLAttributes<HTMLDivElement>, HTMLDivElement>, never>> & string;
|
|
7
|
+
export declare const CloseButton: import("styled-components/dist/types").IStyledComponentBase<"web", import("styled-components").FastOmit<import("react").DetailedHTMLProps<import("react").HTMLAttributes<HTMLDivElement>, HTMLDivElement>, never>> & string;
|
|
8
|
+
export {};
|
|
@@ -0,0 +1,27 @@
|
|
|
1
|
+
import styled from 'styled-components';
|
|
2
|
+
export const PanelMobileWrapper = styled.div `
|
|
3
|
+
display: ${(props) => (props.isActive ? 'block' : 'none')};
|
|
4
|
+
position: fixed;
|
|
5
|
+
box-shadow: 0 0.25rem 0.5rem -0.5rem rgba(2, 55, 74, 0.2);
|
|
6
|
+
overflow: auto;
|
|
7
|
+
height: 100%;
|
|
8
|
+
width: 100%;
|
|
9
|
+
top: ${(props) => (props.showTopBar ? '6.3rem' : '4rem')};
|
|
10
|
+
@media (min-width: 576px) and (max-width: 720px) {
|
|
11
|
+
top: ${(props) => props.showTopBar && '4rem'};
|
|
12
|
+
}
|
|
13
|
+
left: 0;
|
|
14
|
+
background-color: rgba(109, 114, 117, 0.3019607843);
|
|
15
|
+
`;
|
|
16
|
+
export const PanelMenu = styled.div `
|
|
17
|
+
background: var(--others-white);
|
|
18
|
+
box-shadow: 0 0.75rem 0.5rem -0.5rem rgba(2, 55, 74, 0.2);
|
|
19
|
+
padding: 0 1.5rem;
|
|
20
|
+
`;
|
|
21
|
+
export const CloseButton = styled.div `
|
|
22
|
+
padding: 1.5rem 0;
|
|
23
|
+
color: var(--primary-main);
|
|
24
|
+
font-weight: 700;
|
|
25
|
+
border-top: 1px solid var(--neutral-neutral-4);
|
|
26
|
+
cursor: pointer;
|
|
27
|
+
`;
|
|
@@ -0,0 +1,35 @@
|
|
|
1
|
+
import styled from 'styled-components'
|
|
2
|
+
|
|
3
|
+
type MobileMenuTriggerProps = {
|
|
4
|
+
isActive: boolean
|
|
5
|
+
showTopBar?: boolean
|
|
6
|
+
}
|
|
7
|
+
|
|
8
|
+
export const PanelMobileWrapper = styled.div<MobileMenuTriggerProps>`
|
|
9
|
+
display: ${(props) => (props.isActive ? 'block' : 'none')};
|
|
10
|
+
position: fixed;
|
|
11
|
+
box-shadow: 0 0.25rem 0.5rem -0.5rem rgba(2, 55, 74, 0.2);
|
|
12
|
+
overflow: auto;
|
|
13
|
+
height: 100%;
|
|
14
|
+
width: 100%;
|
|
15
|
+
top: ${(props) => (props.showTopBar ? '6.3rem' : '4rem')};
|
|
16
|
+
@media (min-width: 576px) and (max-width: 720px) {
|
|
17
|
+
top: ${(props) => props.showTopBar && '4rem'};
|
|
18
|
+
}
|
|
19
|
+
left: 0;
|
|
20
|
+
background-color: rgba(109, 114, 117, 0.3019607843);
|
|
21
|
+
`
|
|
22
|
+
|
|
23
|
+
export const PanelMenu = styled.div`
|
|
24
|
+
background: var(--others-white);
|
|
25
|
+
box-shadow: 0 0.75rem 0.5rem -0.5rem rgba(2, 55, 74, 0.2);
|
|
26
|
+
padding: 0 1.5rem;
|
|
27
|
+
`
|
|
28
|
+
|
|
29
|
+
export const CloseButton = styled.div`
|
|
30
|
+
padding: 1.5rem 0;
|
|
31
|
+
color: var(--primary-main);
|
|
32
|
+
font-weight: 700;
|
|
33
|
+
border-top: 1px solid var(--neutral-neutral-4);
|
|
34
|
+
cursor: pointer;
|
|
35
|
+
`
|
|
@@ -0,0 +1,13 @@
|
|
|
1
|
+
// src/components/molecules/MobilePanel/MobilePanel.tsx
|
|
2
|
+
import { CloseButton, PanelMenu, PanelMobileWrapper } from './MobilePanel.styled'
|
|
3
|
+
import { MobilePanelProps } from './MobilePanelProps'
|
|
4
|
+
import React from 'react'
|
|
5
|
+
|
|
6
|
+
export const MobilePanel: React.FC<MobilePanelProps> = ({ showTopBar, isActive, onClose, children, closeText }) => (
|
|
7
|
+
<PanelMobileWrapper isActive={isActive} showTopBar={showTopBar}>
|
|
8
|
+
<PanelMenu>
|
|
9
|
+
{children}
|
|
10
|
+
<CloseButton onClick={onClose}>{closeText}</CloseButton>
|
|
11
|
+
</PanelMenu>
|
|
12
|
+
</PanelMobileWrapper>
|
|
13
|
+
)
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
export {};
|
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
import { jsx as _jsx, Fragment as _Fragment, jsxs as _jsxs } from "react/jsx-runtime";
|
|
2
2
|
import { ContactSection, JumbotronSimplifiedSection } from '../../sections';
|
|
3
|
-
import {
|
|
4
|
-
export const ContactUsPage = ({ jumbotronSimplifiedSectionProps,
|
|
5
|
-
return (_jsxs(_Fragment, { children: [_jsx(JumbotronSimplifiedSection, { ...jumbotronSimplifiedSectionProps }), !isJonSnow && _jsx(
|
|
3
|
+
import { PhoneContactBoxMobile } from '../../molecules';
|
|
4
|
+
export const ContactUsPage = ({ jumbotronSimplifiedSectionProps, phoneContactBox, contactProps, isJonSnow = false }) => {
|
|
5
|
+
return (_jsxs(_Fragment, { children: [_jsx(JumbotronSimplifiedSection, { ...jumbotronSimplifiedSectionProps }), !isJonSnow && _jsx(PhoneContactBoxMobile, { ...phoneContactBox }), _jsx(ContactSection, { ...contactProps })] }));
|
|
6
6
|
};
|
|
@@ -1,19 +1,19 @@
|
|
|
1
1
|
import React from 'react'
|
|
2
2
|
|
|
3
3
|
import { ContactSection, JumbotronSimplifiedSection } from '../../sections'
|
|
4
|
-
import { ContactInfoBoxMobile } from '../../molecules'
|
|
5
4
|
import { type ContactUsPageProps } from './ContactUsPageProps'
|
|
5
|
+
import { PhoneContactBoxMobile } from '../../molecules'
|
|
6
6
|
|
|
7
7
|
export const ContactUsPage: React.FC<ContactUsPageProps> = ({
|
|
8
8
|
jumbotronSimplifiedSectionProps,
|
|
9
|
-
|
|
9
|
+
phoneContactBox,
|
|
10
10
|
contactProps,
|
|
11
11
|
isJonSnow = false
|
|
12
12
|
}) => {
|
|
13
13
|
return (
|
|
14
14
|
<>
|
|
15
15
|
<JumbotronSimplifiedSection {...jumbotronSimplifiedSectionProps} />
|
|
16
|
-
{!isJonSnow && <
|
|
16
|
+
{!isJonSnow && <PhoneContactBoxMobile {...phoneContactBox} />}
|
|
17
17
|
<ContactSection {...contactProps} />
|
|
18
18
|
</>
|
|
19
19
|
)
|
|
@@ -1,8 +1,8 @@
|
|
|
1
1
|
import { type ContactSectionProps, type JumbotronSimplifiedSectionProps } from '../../sections';
|
|
2
|
-
import {
|
|
2
|
+
import { type PhoneContactBoxMobileProps } from '../../molecules';
|
|
3
3
|
export interface ContactUsPageProps {
|
|
4
4
|
jumbotronSimplifiedSectionProps: JumbotronSimplifiedSectionProps;
|
|
5
|
-
|
|
5
|
+
phoneContactBox: PhoneContactBoxMobileProps;
|
|
6
6
|
contactProps: ContactSectionProps;
|
|
7
7
|
isJonSnow?: boolean;
|
|
8
8
|
}
|
|
@@ -1,9 +1,9 @@
|
|
|
1
1
|
import { type ContactSectionProps, type JumbotronSimplifiedSectionProps } from '../../sections'
|
|
2
|
-
import {
|
|
2
|
+
import { type PhoneContactBoxMobileProps } from '../../molecules'
|
|
3
3
|
|
|
4
4
|
export interface ContactUsPageProps {
|
|
5
5
|
jumbotronSimplifiedSectionProps: JumbotronSimplifiedSectionProps
|
|
6
|
-
|
|
6
|
+
phoneContactBox: PhoneContactBoxMobileProps
|
|
7
7
|
contactProps: ContactSectionProps
|
|
8
8
|
isJonSnow?: boolean
|
|
9
9
|
}
|
|
@@ -0,0 +1,8 @@
|
|
|
1
|
+
import { jsx as _jsx, jsxs as _jsxs } from "react/jsx-runtime";
|
|
2
|
+
import { AppHeaderStyled, AppHeaderWrapper } from './AppHeader.styled';
|
|
3
|
+
import { DesktopMenu, MobileMenu } from '../../organisms';
|
|
4
|
+
import { Logo } from '../../atoms';
|
|
5
|
+
import './AppHeader.scss';
|
|
6
|
+
export const AppHeader = ({ siteName = 'LawDistrict', homeUrl = '/', sitePhone, scheduleText, headerFullWidth, menuList, toggleMenuHelpOpen, toggleMenuPersonalOpen, isHelpActive, isPersonalActive, userActions, helpTriggerImage, userTriggerImage, handleClickLogo, headerClassnames, closeText = 'Close', showTopBar }) => {
|
|
7
|
+
return (_jsx(AppHeaderStyled, { className: headerClassnames, children: _jsxs(AppHeaderWrapper, { itemScope: true, itemType: 'https://schema.org/Brand', className: `${headerFullWidth ? '--no-grid' : 'wrapper'}`, children: [_jsx("a", { className: 'header__logo', onClick: (event) => handleClickLogo(event, homeUrl), href: homeUrl, children: _jsx(Logo, { siteName: siteName, width: '188', height: '32' }) }), _jsx(DesktopMenu, { phoneNumber: sitePhone, menuList: menuList, userActions: userActions, homeUrl: homeUrl }), _jsx(MobileMenu, { closeText: closeText, helpTriggerImage: helpTriggerImage, isHelpActive: isHelpActive, isPersonalActive: isPersonalActive, toggleMenuHelpOpen: toggleMenuHelpOpen, toggleMenuPersonalOpen: toggleMenuPersonalOpen, userTriggerImage: userTriggerImage, homeUrl: homeUrl, menuList: menuList, scheduleText: scheduleText, sitePhone: sitePhone, userActions: userActions, showTopBar: showTopBar })] }) }));
|
|
8
|
+
};
|
|
@@ -0,0 +1,32 @@
|
|
|
1
|
+
.navigation-pane__user-menu {
|
|
2
|
+
display: flex;
|
|
3
|
+
justify-content: center;
|
|
4
|
+
align-items: center;
|
|
5
|
+
.navigation-pane__user-name {
|
|
6
|
+
margin-right: 1rem;
|
|
7
|
+
font-weight: bold;
|
|
8
|
+
text-overflow: ellipsis;
|
|
9
|
+
overflow: hidden;
|
|
10
|
+
white-space: nowrap;
|
|
11
|
+
width: 6rem;
|
|
12
|
+
}
|
|
13
|
+
|
|
14
|
+
.longer-text {
|
|
15
|
+
width: 11rem;
|
|
16
|
+
margin-right: 1.5rem;
|
|
17
|
+
padding: 0.5rem 1.5rem 0.5rem 0.5rem;
|
|
18
|
+
color: var(--button-hover);
|
|
19
|
+
}
|
|
20
|
+
|
|
21
|
+
.go-to-dashboard-button,
|
|
22
|
+
.go-to-free-account-button {
|
|
23
|
+
background-color: transparent;
|
|
24
|
+
|
|
25
|
+
&:hover {
|
|
26
|
+
background-color: #e4f8f3;
|
|
27
|
+
}
|
|
28
|
+
}
|
|
29
|
+
.navigation-pane__button {
|
|
30
|
+
width: 100%;
|
|
31
|
+
}
|
|
32
|
+
}
|
|
@@ -0,0 +1,2 @@
|
|
|
1
|
+
export declare const AppHeaderStyled: import("styled-components/dist/types").IStyledComponentBase<"web", import("styled-components").FastOmit<import("react").DetailedHTMLProps<import("react").HTMLAttributes<HTMLElement>, HTMLElement>, never>> & string;
|
|
2
|
+
export declare const AppHeaderWrapper: import("styled-components/dist/types").IStyledComponentBase<"web", import("styled-components").FastOmit<import("react").DetailedHTMLProps<import("react").HTMLAttributes<HTMLSpanElement>, HTMLSpanElement>, never>> & string;
|
|
@@ -0,0 +1,35 @@
|
|
|
1
|
+
import styled from 'styled-components';
|
|
2
|
+
export const AppHeaderStyled = styled.header `
|
|
3
|
+
background-color: var(--others-white);
|
|
4
|
+
position: sticky;
|
|
5
|
+
z-index: 999;
|
|
6
|
+
&.product-header-background {
|
|
7
|
+
background-color: var(--secondary-main-light-4);
|
|
8
|
+
}
|
|
9
|
+
|
|
10
|
+
&.create-password-header-background {
|
|
11
|
+
background-color: var(--neutral-neutral-6);
|
|
12
|
+
}
|
|
13
|
+
|
|
14
|
+
&.payment-details-header-background {
|
|
15
|
+
background-color: var(--neutral-neutral-6);
|
|
16
|
+
}
|
|
17
|
+
|
|
18
|
+
&.payment-header-background-8814 {
|
|
19
|
+
background-color: var(--primary-main-light-5);
|
|
20
|
+
}
|
|
21
|
+
|
|
22
|
+
&.transparent-header-background {
|
|
23
|
+
background-color: transparent;
|
|
24
|
+
}
|
|
25
|
+
|
|
26
|
+
&.form-header-background {
|
|
27
|
+
background-color: var(--others-white);
|
|
28
|
+
}
|
|
29
|
+
`;
|
|
30
|
+
export const AppHeaderWrapper = styled.span `
|
|
31
|
+
display: flex;
|
|
32
|
+
justify-content: space-between;
|
|
33
|
+
align-items: center;
|
|
34
|
+
padding: 1rem 1.5rem 1rem 1.5rem;
|
|
35
|
+
`;
|
|
@@ -0,0 +1,36 @@
|
|
|
1
|
+
import styled from 'styled-components'
|
|
2
|
+
|
|
3
|
+
export const AppHeaderStyled = styled.header`
|
|
4
|
+
background-color: var(--others-white);
|
|
5
|
+
position: sticky;
|
|
6
|
+
z-index: 999;
|
|
7
|
+
&.product-header-background {
|
|
8
|
+
background-color: var(--secondary-main-light-4);
|
|
9
|
+
}
|
|
10
|
+
|
|
11
|
+
&.create-password-header-background {
|
|
12
|
+
background-color: var(--neutral-neutral-6);
|
|
13
|
+
}
|
|
14
|
+
|
|
15
|
+
&.payment-details-header-background {
|
|
16
|
+
background-color: var(--neutral-neutral-6);
|
|
17
|
+
}
|
|
18
|
+
|
|
19
|
+
&.payment-header-background-8814 {
|
|
20
|
+
background-color: var(--primary-main-light-5);
|
|
21
|
+
}
|
|
22
|
+
|
|
23
|
+
&.transparent-header-background {
|
|
24
|
+
background-color: transparent;
|
|
25
|
+
}
|
|
26
|
+
|
|
27
|
+
&.form-header-background {
|
|
28
|
+
background-color: var(--others-white);
|
|
29
|
+
}
|
|
30
|
+
`
|
|
31
|
+
export const AppHeaderWrapper = styled.span`
|
|
32
|
+
display: flex;
|
|
33
|
+
justify-content: space-between;
|
|
34
|
+
align-items: center;
|
|
35
|
+
padding: 1rem 1.5rem 1rem 1.5rem;
|
|
36
|
+
`
|
|
@@ -0,0 +1,58 @@
|
|
|
1
|
+
import { AppHeaderStyled, AppHeaderWrapper } from './AppHeader.styled'
|
|
2
|
+
import { DesktopMenu, MobileMenu } from '../../organisms'
|
|
3
|
+
import { AppHeaderProps } from './AppHeaderProps'
|
|
4
|
+
import { Logo } from '../../atoms'
|
|
5
|
+
import React from 'react'
|
|
6
|
+
import './AppHeader.scss'
|
|
7
|
+
|
|
8
|
+
export const AppHeader: React.FC<AppHeaderProps> = ({
|
|
9
|
+
siteName = 'LawDistrict',
|
|
10
|
+
homeUrl = '/',
|
|
11
|
+
sitePhone,
|
|
12
|
+
scheduleText,
|
|
13
|
+
headerFullWidth,
|
|
14
|
+
menuList,
|
|
15
|
+
toggleMenuHelpOpen,
|
|
16
|
+
toggleMenuPersonalOpen,
|
|
17
|
+
isHelpActive,
|
|
18
|
+
isPersonalActive,
|
|
19
|
+
userActions,
|
|
20
|
+
helpTriggerImage,
|
|
21
|
+
userTriggerImage,
|
|
22
|
+
handleClickLogo,
|
|
23
|
+
headerClassnames,
|
|
24
|
+
closeText = 'Close',
|
|
25
|
+
showTopBar
|
|
26
|
+
}) => {
|
|
27
|
+
return (
|
|
28
|
+
<AppHeaderStyled className={headerClassnames}>
|
|
29
|
+
<AppHeaderWrapper
|
|
30
|
+
itemScope
|
|
31
|
+
itemType='https://schema.org/Brand'
|
|
32
|
+
className={`${headerFullWidth ? '--no-grid' : 'wrapper'}`}
|
|
33
|
+
>
|
|
34
|
+
<a className='header__logo' onClick={(event) => handleClickLogo(event, homeUrl)} href={homeUrl}>
|
|
35
|
+
<Logo siteName={siteName} width='188' height='32' />
|
|
36
|
+
</a>
|
|
37
|
+
|
|
38
|
+
<DesktopMenu phoneNumber={sitePhone} menuList={menuList} userActions={userActions} homeUrl={homeUrl} />
|
|
39
|
+
|
|
40
|
+
<MobileMenu
|
|
41
|
+
closeText={closeText}
|
|
42
|
+
helpTriggerImage={helpTriggerImage}
|
|
43
|
+
isHelpActive={isHelpActive}
|
|
44
|
+
isPersonalActive={isPersonalActive}
|
|
45
|
+
toggleMenuHelpOpen={toggleMenuHelpOpen}
|
|
46
|
+
toggleMenuPersonalOpen={toggleMenuPersonalOpen}
|
|
47
|
+
userTriggerImage={userTriggerImage}
|
|
48
|
+
homeUrl={homeUrl}
|
|
49
|
+
menuList={menuList}
|
|
50
|
+
scheduleText={scheduleText}
|
|
51
|
+
sitePhone={sitePhone}
|
|
52
|
+
userActions={userActions}
|
|
53
|
+
showTopBar={showTopBar}
|
|
54
|
+
/>
|
|
55
|
+
</AppHeaderWrapper>
|
|
56
|
+
</AppHeaderStyled>
|
|
57
|
+
)
|
|
58
|
+
}
|
|
@@ -0,0 +1,26 @@
|
|
|
1
|
+
export interface MenuListItem {
|
|
2
|
+
title: string;
|
|
3
|
+
url: string;
|
|
4
|
+
}
|
|
5
|
+
export interface AppHeaderProps {
|
|
6
|
+
siteName: string;
|
|
7
|
+
homeUrl: string;
|
|
8
|
+
sitePhone: string;
|
|
9
|
+
scheduleText: string;
|
|
10
|
+
headerFullWidth: boolean;
|
|
11
|
+
menuList?: {
|
|
12
|
+
title: string;
|
|
13
|
+
items: MenuListItem[];
|
|
14
|
+
};
|
|
15
|
+
toggleMenuHelpOpen: () => void;
|
|
16
|
+
toggleMenuPersonalOpen: () => void;
|
|
17
|
+
isHelpActive: boolean;
|
|
18
|
+
isPersonalActive: boolean;
|
|
19
|
+
userActions: React.ReactNode;
|
|
20
|
+
helpTriggerImage: string;
|
|
21
|
+
userTriggerImage: string;
|
|
22
|
+
handleClickLogo: (event: React.MouseEvent<HTMLElement>, url: string) => void;
|
|
23
|
+
headerClassnames: string;
|
|
24
|
+
closeText: string;
|
|
25
|
+
showTopBar?: boolean;
|
|
26
|
+
}
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
export {};
|
|
@@ -0,0 +1,27 @@
|
|
|
1
|
+
export interface MenuListItem {
|
|
2
|
+
title: string
|
|
3
|
+
url: string
|
|
4
|
+
}
|
|
5
|
+
|
|
6
|
+
export interface AppHeaderProps {
|
|
7
|
+
siteName: string
|
|
8
|
+
homeUrl: string
|
|
9
|
+
sitePhone: string
|
|
10
|
+
scheduleText: string
|
|
11
|
+
headerFullWidth: boolean
|
|
12
|
+
menuList?: {
|
|
13
|
+
title: string
|
|
14
|
+
items: MenuListItem[]
|
|
15
|
+
}
|
|
16
|
+
toggleMenuHelpOpen: () => void
|
|
17
|
+
toggleMenuPersonalOpen: () => void
|
|
18
|
+
isHelpActive: boolean
|
|
19
|
+
isPersonalActive: boolean
|
|
20
|
+
userActions: React.ReactNode
|
|
21
|
+
helpTriggerImage: string
|
|
22
|
+
userTriggerImage: string
|
|
23
|
+
handleClickLogo: (event: React.MouseEvent<HTMLElement>, url: string) => void
|
|
24
|
+
headerClassnames: string
|
|
25
|
+
closeText: string
|
|
26
|
+
showTopBar?: boolean
|
|
27
|
+
}
|
|
@@ -30,12 +30,10 @@ export const ContactSectionStyled = styled.section `
|
|
|
30
30
|
.contact-left-container {
|
|
31
31
|
padding-left: 1.5rem;
|
|
32
32
|
padding-right: 1.5rem;
|
|
33
|
-
margin-bottom: 2.5rem;
|
|
34
33
|
|
|
35
34
|
@media ${device['portrait-tablets']} {
|
|
36
35
|
padding-left: 0;
|
|
37
36
|
padding-right: 0;
|
|
38
|
-
margin-bottom: 1.5rem;
|
|
39
37
|
width: 45%;
|
|
40
38
|
}
|
|
41
39
|
}
|
|
@@ -31,12 +31,10 @@ export const ContactSectionStyled = styled.section`
|
|
|
31
31
|
.contact-left-container {
|
|
32
32
|
padding-left: 1.5rem;
|
|
33
33
|
padding-right: 1.5rem;
|
|
34
|
-
margin-bottom: 2.5rem;
|
|
35
34
|
|
|
36
35
|
@media ${device['portrait-tablets']} {
|
|
37
36
|
padding-left: 0;
|
|
38
37
|
padding-right: 0;
|
|
39
|
-
margin-bottom: 1.5rem;
|
|
40
38
|
width: 45%;
|
|
41
39
|
}
|
|
42
40
|
}
|