@mindly/ui-components 0.1.2 → 0.1.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.
Files changed (64) hide show
  1. package/dist/index.tsx +1 -1
  2. package/dist/tab-bar/tabBar.style.ts +1 -1
  3. package/dist/tab-bar/tabBar.tsx +3 -1
  4. package/package.json +30 -3
  5. package/.eslintrc.json +0 -47
  6. package/.idea/codeStyles/Project.xml +0 -45
  7. package/.idea/codeStyles/codeStyleConfig.xml +0 -5
  8. package/.idea/inspectionProfiles/Project_Default.xml +0 -6
  9. package/.idea/jsLinters/eslint.xml +0 -6
  10. package/.idea/mindly-components.iml +0 -13
  11. package/.idea/modules.xml +0 -8
  12. package/.idea/vcs.xml +0 -6
  13. package/.storybook/main.js +0 -11
  14. package/.storybook/preview.js +0 -9
  15. package/babel.config.json +0 -18
  16. package/ionic.config.json +0 -5
  17. package/public/favicon.ico +0 -0
  18. package/public/index.html +0 -43
  19. package/public/logo192.png +0 -0
  20. package/public/logo512.png +0 -0
  21. package/public/manifest.json +0 -25
  22. package/public/robots.txt +0 -3
  23. package/src/fonts/Lato-Bold.ttf +0 -0
  24. package/src/fonts/Lato-Regular.ttf +0 -0
  25. package/src/fonts/Lato-Semibold.ttf +0 -0
  26. package/src/lib/Theme/global.css +0 -191
  27. package/src/lib/Theme/mindly_constants.ts +0 -20
  28. package/src/lib/button/Button.style.ts +0 -83
  29. package/src/lib/button/Button.tsx +0 -29
  30. package/src/lib/consultation-card/consultationCard.tsx +0 -18
  31. package/src/lib/floating-button/floating button.svg +0 -6
  32. package/src/lib/floating-button/floatingButton.style.ts +0 -21
  33. package/src/lib/floating-button/floatingButton.tsx +0 -29
  34. package/src/lib/footer-for-booking/FooterForBooking.style.ts +0 -42
  35. package/src/lib/footer-for-booking/FooterForBooking.tsx +0 -43
  36. package/src/lib/index.tsx +0 -9
  37. package/src/lib/list-button/listButton.style.ts +0 -19
  38. package/src/lib/list-button/listButton.tsx +0 -19
  39. package/src/lib/navigation-bar/NavigationBar.style.ts +0 -56
  40. package/src/lib/navigation-bar/NavigationBar.tsx +0 -26
  41. package/src/lib/tab-bar/tabBar.style.ts +0 -15
  42. package/src/lib/tab-bar/tabBar.tsx +0 -31
  43. package/src/lib/therapist-card/TherapistCard.style.ts +0 -140
  44. package/src/lib/therapist-card/TherapistCard.tsx +0 -97
  45. package/src/react-app-env.d.ts +0 -1
  46. package/src/stories/Button.stories.tsx +0 -37
  47. package/src/stories/Button.tsx +0 -48
  48. package/src/stories/Header.stories.tsx +0 -19
  49. package/src/stories/Header.tsx +0 -47
  50. package/src/stories/Introduction.stories.mdx +0 -211
  51. package/src/stories/Page.stories.tsx +0 -22
  52. package/src/stories/Page.tsx +0 -67
  53. package/src/stories/assets/code-brackets.svg +0 -1
  54. package/src/stories/assets/colors.svg +0 -1
  55. package/src/stories/assets/comments.svg +0 -1
  56. package/src/stories/assets/direction.svg +0 -1
  57. package/src/stories/assets/flow.svg +0 -1
  58. package/src/stories/assets/plugin.svg +0 -1
  59. package/src/stories/assets/repo.svg +0 -1
  60. package/src/stories/assets/stackalt.svg +0 -1
  61. package/src/stories/button.css +0 -30
  62. package/src/stories/header.css +0 -26
  63. package/src/stories/page.css +0 -69
  64. package/tsconfig.json +0 -26
@@ -1,83 +0,0 @@
1
- import styled, {css} from 'styled-components';
2
- import {colorConstants} from '../Theme/mindly_constants';
3
-
4
- interface ContainerProps{
5
- buttonType: 'primary' | 'secondary' | 'survey' | 'secondaryWithStroke' | 'secondaryCancel',
6
- isDisabled: boolean
7
- }
8
-
9
- export const Container = styled.button<ContainerProps>`
10
- padding: 8px 0;
11
- width: 100%;
12
- border-radius: 4px;
13
- border: 0;
14
- background: ${colorConstants.primaryColor};
15
- color: ${colorConstants.White};
16
-
17
- &:hover, &:active {
18
- box-shadow: inset 0 4px 15px rgba(0, 0, 0, 0.2), inset 0 -4px 15px rgba(0, 0, 0, 0.2);
19
- }
20
-
21
- ${(props: ContainerProps) => props.buttonType === 'secondary' && css`
22
- background: inherit;
23
- color: ${colorConstants.primaryColor};
24
-
25
- &:hover, &:active {
26
- box-shadow: none;
27
- color: ${colorConstants.AccentActiveButtonBG};
28
- }
29
- `}
30
-
31
- ${(props: ContainerProps) => props.buttonType === 'secondaryWithStroke' && css`
32
- color: ${colorConstants.primaryColor};
33
- background: inherit;
34
- box-shadow: none;
35
- border: 1px solid ${colorConstants.primaryColor};
36
-
37
- &:hover, &:active {
38
- box-shadow: none;
39
- color: ${colorConstants.AccentActiveButtonBG};
40
- background: inherit;
41
- border: 1px solid ${colorConstants.AccentActiveButtonBG};
42
- }
43
- `}
44
-
45
- ${(props: ContainerProps) => props.buttonType === 'secondaryCancel' && css`
46
- color: ${colorConstants.AccentCross};
47
- background: inherit;
48
- box-shadow: none;
49
- border: 0;
50
-
51
- &:hover, &:active {
52
- box-shadow: none;
53
- color: ${colorConstants.AccentCancelActive};
54
- background: inherit;
55
- border: 0;
56
- }
57
- `}
58
-
59
- ${(props: ContainerProps) => props.buttonType === 'survey' && css`
60
- color: ${colorConstants.primaryTextColor};
61
- background: inherit;
62
- box-shadow: none;
63
- border: 1px solid ${colorConstants.primaryTextColor};
64
-
65
- &:hover, &:active {
66
- box-shadow: none;
67
- color: ${colorConstants.primaryColor};
68
- background: ${colorConstants.AccentSurveyButton};
69
- border: 1px solid ${colorConstants.AccentDisabledColor};
70
- }
71
- `}
72
-
73
- ${(props: ContainerProps) => props.isDisabled && css`
74
- background: ${colorConstants.AccentActiveButtonBG};
75
- color: ${colorConstants.White};
76
- box-shadow: none;
77
-
78
-
79
- &:hover, &:active {
80
- box-shadow: none;
81
- }
82
- `}
83
- `;
@@ -1,29 +0,0 @@
1
- import React from 'react';
2
- import {Container} from './Button.style';
3
- import '../Theme/global.css';
4
-
5
-
6
- interface ButtonProps {
7
- buttonType: 'primary' | 'secondary' | 'survey' | 'secondaryWithStroke' | 'secondaryCancel',
8
- isDisabled: boolean,
9
- children: React.ReactNode,
10
- onClick: (atr: any) => void
11
- }
12
-
13
-
14
- const Button: React.FC<ButtonProps> = (props) => {
15
- return (
16
- <Container
17
- onClick={props.onClick}
18
- disabled={props.isDisabled}
19
- isDisabled={props.isDisabled}
20
- buttonType={props.buttonType}
21
- >
22
- <h4>
23
- {props.children}
24
- </h4>
25
- </Container>
26
- );
27
- };
28
-
29
- export default Button;
@@ -1,18 +0,0 @@
1
- import React from 'react';
2
- import Button from '../button/Button';
3
- import {timeOutline, cardOutline} from 'ionicons/icons';
4
-
5
- interface ConsultationCardProps {
6
- eventHandler: () => void,
7
- time: string,
8
- price: string,
9
- }
10
-
11
- const ConsultationCard: React.FC<ConsultationCardProps> = (props)=> {
12
- return (
13
- <Container>
14
- </Container>
15
- );
16
- };
17
-
18
- export default ConsultationCard;
@@ -1,6 +0,0 @@
1
- <svg width="54" height="54" viewBox="0 0 54 54" fill="none" xmlns="http://www.w3.org/2000/svg">
2
- <rect width="54" height="54" fill="#21ABD2"/>
3
- <path d="M27.0002 15C21.9405 15 17.8237 19.1168 17.8237 24.1765V32.647C17.8237 33.8148 18.7737 34.7648 19.9413 34.7648C21.1092 34.7648 22.0591 33.8148 22.0591 32.647V25.5883C22.0591 24.4206 21.1092 23.4706 19.9413 23.4706C19.7037 23.4706 19.4788 23.5188 19.2651 23.5913C19.5663 19.5829 22.9168 16.4117 27.0002 16.4117C31.0815 16.4117 34.431 19.58 34.735 23.5856C34.5226 23.5129 34.2964 23.4706 34.0591 23.4706C32.8913 23.4706 31.9413 24.4206 31.9413 25.5883V32.647C31.9413 33.8148 32.8913 34.7648 34.0591 34.7648C34.3078 34.7648 34.5431 34.7139 34.765 34.6348V35.4706C34.765 35.8601 34.4479 36.1765 34.0591 36.1765H28.9879C28.6954 35.3566 27.9192 34.7648 27.0002 34.7648C25.8326 34.7648 24.8826 35.7147 24.8826 36.8824C24.8826 38.05 25.8326 39 27.0002 39C27.9192 39 28.6954 38.408 28.9879 37.5883H34.0591C35.2268 37.5883 36.1768 36.6383 36.1768 35.4706C36.1768 31.2248 36.1768 28.4269 36.1768 24.1765C36.1768 19.1168 32.06 15 27.0002 15V15Z" fill="white"/>
4
- <path d="M37.5884 25.0122V33.2227C38.4081 32.9304 39.0001 32.1542 39.0001 31.235V26.9998C39.0001 26.0808 38.4081 25.3046 37.5884 25.0122Z" fill="white"/>
5
- <path d="M15 26.9998V31.235C15 32.1542 15.592 32.9304 16.4117 33.2227V25.0122C15.592 25.3046 15 26.0808 15 26.9998Z" fill="white"/>
6
- </svg>
@@ -1,21 +0,0 @@
1
- import styled from 'styled-components';
2
-
3
- interface ContainerProps{
4
- bottomHeight: number,
5
- rightWidth: number
6
- }
7
-
8
- export const Container = styled.a<ContainerProps>`
9
- display: block;
10
- width: 54px;
11
- height: 54px;
12
- position: fixed;
13
- bottom: ${(props) => props.bottomHeight}px;
14
- right: ${(props) => props.rightWidth}px;
15
- z-index: 100000000;
16
-
17
- img {
18
- background: none;
19
- border-radius: 50%;
20
- }
21
- `;
@@ -1,29 +0,0 @@
1
- import React from 'react';
2
- import {Container} from './floatingButton.style';
3
- import img from './floating button.svg';
4
-
5
- interface FloatingButtonType {
6
- bottomHeight: number;
7
- rightWidth: number;
8
- }
9
-
10
- const FloatingButton: React.FC<FloatingButtonType> = (
11
- {
12
- bottomHeight = 0,
13
- rightWidth = 0,
14
- }) => {
15
- return (
16
- <Container
17
- href="https://t.me/MindlySupport"
18
- bottomHeight={bottomHeight}
19
- rightWidth={rightWidth}
20
- >
21
- <img
22
- src={img}
23
- alt="support mindly"
24
- />
25
- </Container>
26
- );
27
- };
28
-
29
- export default FloatingButton;
@@ -1,42 +0,0 @@
1
- import styled from 'styled-components';
2
- import {IonIcon} from '@ionic/react';
3
- import {colorConstants} from '../Theme/mindly_constants';
4
-
5
- interface ContainerProps {
6
- isIos: boolean;
7
- }
8
-
9
- export const Container = styled.div<ContainerProps>`
10
- padding: ${(props) => props.isIos ? '16px 24px 50px' : '16px 24px'};
11
- box-shadow: 0 -2px 8px rgba(0, 0, 0, 0.12);
12
- display: flex;
13
- position: fixed;
14
- bottom: 0;
15
- justify-content: space-between;
16
- align-items: center;
17
- width: 100%;
18
-
19
- button {
20
- height: 44px;
21
- width: 132px;
22
- }
23
- `;
24
-
25
- export const InfoContainer = styled.div`
26
- h4 {
27
- color: ${colorConstants.secondaryTextColor};
28
- }
29
-
30
- h4:first-child {
31
- margin-bottom: 4px;
32
- }
33
- `;
34
-
35
- export const SmallIcon = styled(IonIcon)`
36
- margin: 0 5px -4px 0;
37
- font-size: 18px;
38
-
39
- &.ion-color {
40
- --ion-color-base: ${colorConstants.primaryColor} !important;
41
- }
42
- `;
@@ -1,43 +0,0 @@
1
- import React from 'react';
2
- import {Container, InfoContainer, SmallIcon} from './FooterForBooking.style';
3
- import Button from '../button/Button';
4
- import {timeOutline, cardOutline} from 'ionicons/icons';
5
- import {isPlatform} from '@ionic/react';
6
-
7
- interface FooterForBookingProps {
8
- eventHandler: () => void,
9
- time: string,
10
- price: string,
11
- }
12
-
13
- const FooterForBooking: React.FC<FooterForBookingProps> = (props)=> {
14
- return (
15
- <Container isIos={isPlatform('ios')}>
16
- <InfoContainer>
17
- <h4>
18
- <SmallIcon icon={timeOutline} color='primary' />
19
- <>
20
- {props.time}
21
- </>
22
- </h4>
23
- <h4>
24
- <SmallIcon icon={cardOutline} color='primary' />
25
- <>
26
- {props.price}
27
- </>
28
- </h4>
29
- </InfoContainer>
30
- <Button
31
- buttonType={'primary'}
32
- isDisabled={false}
33
- onClick={props.eventHandler}
34
- >
35
- <h4 className='semiBold'>
36
- Записаться
37
- </h4>
38
- </Button>
39
- </Container>
40
- );
41
- };
42
-
43
- export default FooterForBooking;
package/src/lib/index.tsx DELETED
@@ -1,9 +0,0 @@
1
- import Button from './button/Button';
2
- import ConsultationCard from './consultation-card/consultationCard';
3
- import FloatingButton from './floating-button/floatingButton';
4
- import FooterForBooking from './footer-for-booking/FooterForBooking';
5
- import ListButton from './list-button/listButton';
6
- import NavigationBar from './navigation-bar/NavigationBar';
7
- import {TabBar} from './tab-bar/tabBar';
8
-
9
- export {Button, ConsultationCard, FloatingButton, FooterForBooking, ListButton, NavigationBar, TabBar};
@@ -1,19 +0,0 @@
1
- import styled from 'styled-components';
2
- import {colorConstants} from '../Theme/mindly_constants';
3
- import {IonIcon} from '@ionic/react';
4
-
5
- export const Container = styled.button`
6
- display: flex;
7
- justify-content: space-between;
8
- color: ${colorConstants.secondaryTextColor};
9
- border: 0;
10
- border-bottom: 1px solid ${colorConstants.AccentDivider};
11
- width: 100%;
12
- padding: 10px 16px;
13
- background: inherit;
14
- `;
15
-
16
- export const Image = styled(IonIcon)`
17
- width: 21px;
18
- height: 21px;
19
- `;
@@ -1,19 +0,0 @@
1
- import React from 'react';
2
- import '../Theme/global.css';
3
- import {Container, Image} from './listButton.style';
4
-
5
- interface ListButtonProps {
6
- text: string,
7
- icon: string,
8
- }
9
-
10
- const ListButton: React.FC<ListButtonProps> = (props) => {
11
- return (
12
- <Container>
13
- <h4>{props.text}</h4>
14
- <Image icon={props.icon}/>
15
- </Container>
16
- );
17
- };
18
-
19
- export default ListButton;
@@ -1,56 +0,0 @@
1
- import styled, {css} from 'styled-components';
2
- import {IonHeader} from '@ionic/react';
3
- import {colorConstants} from '../Theme/mindly_constants';
4
-
5
- interface ContainerProps {
6
- isIos: boolean
7
- isInternetConnected: boolean
8
- }
9
-
10
- export const Container = styled(IonHeader)<ContainerProps>`
11
- padding: ${(props) => props.isInternetConnected ? '10px' : '40px 10px 10px'};
12
- background: #ffffff;
13
- position: fixed;
14
- display: flex;
15
- z-index: 1000;
16
- text-align: center;
17
- justify-content: center;
18
- min-height: ${(props) => props.isInternetConnected ? '44px' : '74px'};
19
- box-shadow: 0 1px 5px rgba(0, 0, 0, 0.08);
20
- color: ${colorConstants.primaryTextColor};
21
-
22
- .left {
23
- position: absolute;
24
- color: ${colorConstants.primaryColor};
25
- left: 10px;
26
- top: ${(props: ContainerProps) => props.isInternetConnected ? 'calc(50% - 12px)' : 'calc(50% + 3px)'};
27
- }
28
-
29
- .right {
30
- color: ${colorConstants.primaryColor};
31
- position: absolute;
32
- right: 10px;
33
- top: ${(props: ContainerProps) => props.isInternetConnected ? 'calc(50% - 12px)' : 'calc(50% + 3px)'};
34
- }
35
-
36
- &:after {
37
- background-image: none;
38
- }
39
-
40
- ${(props: ContainerProps) => props.isIos && css`
41
- padding: ${props.isInternetConnected ? '54px 10px 10px' : '64px 10px 10px'};
42
- min-height: ${props.isInternetConnected ? '88px' : '98px'};
43
-
44
- .left {
45
- position: absolute;
46
- left: 10px;
47
- top: ${props.isInternetConnected ? 'calc(50% + 10px)' : 'calc(50% + 15px)'};
48
- }
49
-
50
- .right {
51
- position: absolute;
52
- right: 10px;
53
- top: ${props.isInternetConnected ? 'calc(50% + 10px)' : 'calc(50% + 15px)'};
54
- }
55
- `}
56
- `;
@@ -1,26 +0,0 @@
1
- import React from 'react';
2
- import {Container} from './NavigationBar.style';
3
- import '../Theme/global.css';
4
- import {isPlatform} from '@ionic/react';
5
-
6
- interface NavigationBar {
7
- isInternetConnected: boolean,
8
- }
9
-
10
- const NavigationBar: React.FC<NavigationBar> = (props) => {
11
- return (
12
- <Container isIos={isPlatform('ios')} isInternetConnected={props.isInternetConnected}>
13
- <h4 className='left'>
14
- first
15
- </h4>
16
- <h4 className='second'>
17
- second
18
- </h4>
19
- <h4 className='right'>
20
- third
21
- </h4>
22
- </Container>
23
- );
24
- };
25
-
26
- export default NavigationBar;
@@ -1,15 +0,0 @@
1
- import styled from 'styled-components';
2
- import {IonTabBar} from '@ionic/react';
3
-
4
- interface ContainerProps {
5
- isIos: boolean
6
- }
7
-
8
- export const Container = styled(IonTabBar)<ContainerProps>`
9
- box-shadow: 0px -2px 5px rgba(0, 0, 0, 0.08);
10
- position: fixed;
11
- bottom: 0;
12
- width: 100%;
13
- border: none;
14
- padding-bottom: ${(props) => props.isIos ? '34px' : '0'};
15
- `;
@@ -1,31 +0,0 @@
1
- import React from 'react';
2
- import {IonTabButton, IonIcon, IonLabel, IonBadge, isPlatform} from '@ionic/react';
3
- import {calendar, personCircle, map, informationCircle} from 'ionicons/icons';
4
- import {Container} from './tabBar.style';
5
-
6
- export const TabBar: React.FC = () => (
7
- <>
8
- <Container isIos={isPlatform('ios')} slot="bottom">
9
- <IonTabButton tab="schedule">
10
- <IonIcon icon={calendar} />
11
- <IonLabel>Schedule</IonLabel>
12
- <IonBadge>6</IonBadge>
13
- </IonTabButton>
14
-
15
- <IonTabButton tab="speakers">
16
- <IonIcon icon={personCircle} />
17
- <IonLabel>Speakers</IonLabel>
18
- </IonTabButton>
19
-
20
- <IonTabButton tab="map">
21
- <IonIcon icon={map} />
22
- <IonLabel>Map</IonLabel>
23
- </IonTabButton>
24
-
25
- <IonTabButton tab="about">
26
- <IonIcon icon={informationCircle} />
27
- <IonLabel>About</IonLabel>
28
- </IonTabButton>
29
- </Container>
30
- </>
31
- );
@@ -1,140 +0,0 @@
1
- import {
2
- IonCard,
3
- IonCardContent,
4
- IonCardHeader,
5
- IonCardSubtitle,
6
- IonCardTitle,
7
- IonCol,
8
- IonIcon, IonSkeletonText,
9
- } from '@ionic/react';
10
- import styled from 'styled-components';
11
- import {colorConstants} from '../Theme/mindly_constants';
12
-
13
- export const IonColWithoutPadding = styled(IonCol)`
14
- padding: 0;
15
- margin: 0;
16
- `;
17
-
18
- interface ContainerProps {
19
- isIos: boolean
20
- }
21
-
22
- export const Container = styled.div<ContainerProps>`
23
- margin: 0 16px 24px;
24
- border-radius: 8px;
25
- box-shadow: 0 6px 8px rgba(0, 0, 0, 0.1);
26
-
27
- &:first-child {
28
- margin-top: ${(props) => (props.isIos ? '28px' : '20px')};
29
- }
30
-
31
- &:last-of-type {
32
- margin-bottom: 80px;
33
- }
34
- `;
35
-
36
- type SkeletonProps = {
37
- isLoading: boolean
38
- }
39
-
40
- export const Skeleton = styled.div<SkeletonProps>`
41
- visibility: ${(props) => (props.isLoading ? 'visible' : 'hidden')};
42
- position: absolute;
43
- width: 100%;
44
- top: 0;
45
- `;
46
-
47
- type HideProps = {
48
- isLoading: boolean
49
- }
50
-
51
- export const Hide = styled.div<HideProps>`
52
- visibility: ${(props) => (props.isLoading ? 'hidden' : 'visible')};
53
- `;
54
-
55
- export const PsychologistCardIonCard = styled(IonCard)`
56
- height: 100%;
57
- border-radius: 8px;
58
- margin: 0;
59
- position: relative;
60
- box-shadow: none;
61
-
62
- img {
63
- height: 222px;
64
- width: 100%;
65
- object-fit: cover;
66
- }
67
- `;
68
-
69
- export const PsychologistCardIonCardHeader = styled(IonCardHeader)`
70
- padding: 16px 16px 0;
71
- `;
72
-
73
- export const PsychologistCardIonCardSubtitle = styled(IonCardSubtitle)`
74
- display: flex;
75
- align-items: flex-start;
76
- text-transform: none;
77
- letter-spacing: 0;
78
- margin: 4px 0 16px;
79
- color: ${colorConstants.primaryTextColor};
80
- `;
81
-
82
- export const PsychologistCardIonCardTitle = styled(IonCardTitle)`
83
- color: ${colorConstants.secondaryTextColor};
84
- margin: 0;
85
- `;
86
-
87
- export const PsychologistCardIonCardContent = styled(IonCardContent)`
88
- padding: 0 16px 16px;
89
- `;
90
-
91
- export const PsychologistCardIcons = styled(IonIcon)`
92
- color: ${colorConstants.primaryColor};
93
- width: 20px;
94
- height: 20px;
95
- margin: 0;
96
-
97
- @media (max-width: 320px) {
98
- width: 19px;
99
- }
100
- `;
101
-
102
- export const IconsContainer = styled.div`
103
- display: flex;
104
- align-items: center;
105
- padding: 0;
106
- margin: 0;
107
-
108
- p {
109
- color: ${colorConstants.secondaryTextColor};
110
- font-size: 14px;
111
- padding-left: 5px;
112
- margin: 0;
113
-
114
- @media (max-width: 320px) {
115
- font-size: 11.5px;
116
- }
117
- }
118
- `;
119
-
120
- export const InfoContainer = styled.div`
121
- display: flex;
122
- justify-content: space-between;
123
- `;
124
-
125
- interface SkeletonTextProps{
126
- height: number
127
- }
128
-
129
- export const SkeletonText = styled(IonSkeletonText)<SkeletonTextProps>`
130
- width: 100%;
131
- height: ${(props) => props.height + 'px'};
132
-
133
- &:first-child {
134
- margin-bottom: 16px;
135
- }
136
-
137
- &:last-child{
138
- margin-top: 16px;
139
- }
140
- `;