Advertisement
Guest User

Untitled

a guest
Mar 23rd, 2018
87
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 3.95 KB | None | 0 0
  1. diff --git a/src/components/PageProfile/HouseInfo/MeterRequest/MeterRequest.tsx b/src/components/PageProfile/HouseInfo/MeterRequest/MeterRequest.tsx
  2. index de6388a..e12bab6 100644
  3. --- a/src/components/PageProfile/HouseInfo/MeterRequest/MeterRequest.tsx
  4. +++ b/src/components/PageProfile/HouseInfo/MeterRequest/MeterRequest.tsx
  5. @@ -80,12 +80,11 @@ const RequestBtn = styled(PrimaryBtn)`
  6. `
  7.  
  8. const SelectWrapper = styled.div`
  9. - margin-bottom: 12px;
  10. position: relative;
  11.  
  12. &::after {
  13. position: absolute;
  14. - top: calc(50% - 3px);
  15. + top: calc(50% - 7px);
  16. right: 19px;
  17. width: 8px;
  18. height: 8px;
  19. @@ -96,6 +95,10 @@ const SelectWrapper = styled.div`
  20. transition: transform 0.2s ease-in-out;
  21. transform: translate3d(0, -3px, 0) rotate(135deg);
  22. }
  23. :...skipping...
  24.  
  25.  
  26.  
  27.  
  28.  
  29.  
  30. diff --git a/src/components/PageProfile/HouseInfo/MeterRequest/MeterRequest.tsx b/src/components/PageProfile/HouseInfo/MeterRequest/MeterRequest.tsx
  31. index de6388a..e12bab6 100644
  32. --- a/src/components/PageProfile/HouseInfo/MeterRequest/MeterRequest.tsx
  33. +++ b/src/components/PageProfile/HouseInfo/MeterRequest/MeterRequest.tsx
  34. @@ -80,12 +80,11 @@ const RequestBtn = styled(PrimaryBtn)`
  35. `
  36.  
  37. const SelectWrapper = styled.div`
  38. - margin-bottom: 12px;
  39. position: relative;
  40.  
  41. &::after {
  42. position: absolute;
  43. - top: calc(50% - 3px);
  44. + top: calc(50% - 7px);
  45. right: 19px;
  46. width: 8px;
  47. height: 8px;
  48. @@ -96,6 +95,10 @@ const SelectWrapper = styled.div`
  49. transition: transform 0.2s ease-in-out;
  50. transform: translate3d(0, -3px, 0) rotate(135deg);
  51. }
  52. +
  53. + @media ${MEDIA.untilTablet} {
  54. + margin-bottom: 0;
  55. + }
  56. `
  57.  
  58.  
  59.  
  60.  
  61.  
  62.  
  63. diff --git a/src/components/PageProfile/PersonData/PersonDataInfo/PersonDataInfo.tsx b/src/components/PageProfile/PersonData/PersonDataInfo/PersonDataInfo.tsx
  64. index 5690e80..a361250 100644
  65. --- a/src/components/PageProfile/PersonData/PersonDataInfo/PersonDataInfo.tsx
  66. +++ b/src/components/PageProfile/PersonData/PersonDataInfo/PersonDataInfo.tsx
  67. @@ -45,8 +45,9 @@ const Data = styled.section`
  68. const NameWrapper = styled.div`
  69. @media ${MEDIA.untilTablet} {
  70. border-left: 4px solid ${BLUE};
  71. - padding: 12px 34px 39px 14px;
  72. + padding: 12px 14px 39px 14px;
  73. border-bottom: 1px solid ${LIGHT_LINES};
  74. + display: flex;
  75. }
  76. `
  77.  
  78. @@ -77,12 +78,12 @@ const ChangeDataBtn = styled(SecondaryBtn)`
  79. `
  80.  
  81. const ChangeMobileBtn = styled(SecondaryBtn)`
  82. - position: absolute;
  83. top: 14px;
  84. right: 14px;
  85. width: 32px;
  86. height: 32px;
  87. min-width: initial;
  88. + margin-right: initial;
  89.  
  90. ::before {
  91. margin-right: 0;
  92. @@ -90,7 +91,7 @@ const ChangeMobileBtn = styled(SecondaryBtn)`
  93.  
  94. @media ${MEDIA.untilTablet} {
  95. &::before {
  96. - width: 14px;
  97. + min-width: 14px;
  98. height: 14px;
  99. }
  100. }
  101.  
  102.  
  103.  
  104. diff --git a/src/components/common/forms/CheckboxNotice/CheckboxNotice.tsx b/src/components/common/forms/CheckboxNotice/CheckboxNotice.tsx
  105. index 8e63e61..ade433d 100644
  106. --- a/src/components/common/forms/CheckboxNotice/CheckboxNotice.tsx
  107. +++ b/src/components/common/forms/CheckboxNotice/CheckboxNotice.tsx
  108. @@ -60,7 +60,7 @@ export default class CheckboxNotice extends React.Component<ICheckboxProps> {
  109. action(() => {
  110. this.isNoticeVisible = false
  111. }),
  112. - 3000
  113. + 1500
  114. )
  115. }
  116.  
  117. diff --git a/src/components/pru/Checkbox/Checkbox.tsx b/src/components/pru/Checkbox/Checkbox.tsx
  118. index 397a336..34d9403 100644
  119. --- a/src/components/pru/Checkbox/Checkbox.tsx
  120. +++ b/src/components/pru/Checkbox/Checkbox.tsx
  121. @@ -56,7 +56,6 @@ const Label = styled.label`
  122. line-height: 1.29;
  123. color: ${LONG_TEXT};
  124. display: flex;
  125. - align-items: baseline;
  126.  
  127. &::before {
  128. min-height: 13px;
  129. @@ -64,6 +63,7 @@ const Label = styled.label`
  130. content: '';
  131. display: inline-block;
  132. margin-right: 11px;
  133. + align-self: flex-start;
  134.  
  135. @media ${MEDIA.untilTablet} {
  136. margin-right: 8px;
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement