@secondstaxorg/sscomp 1.7.25 → 1.7.27

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/index.js CHANGED
@@ -30604,17 +30604,16 @@ const AccordionItem = styled.div`
30604
30604
  .accordion-content{
30605
30605
  //padding: 24px;
30606
30606
  background: #ffffff;
30607
- max-height: 0;
30607
+ height: 0;
30608
30608
  overflow:hidden;
30609
30609
  }
30610
30610
 
30611
30611
  .accordion-content.expanded{
30612
30612
  border-top: 1px solid ${theme.colors["neutral-200"]};
30613
- max-height: 10000px;
30614
- transition: max-height 2s ease-in-out;
30613
+ height: auto;
30615
30614
  }
30616
30615
 
30617
- .accordion-content div{
30616
+ .accordion-content{
30618
30617
  padding:24px;
30619
30618
  }
30620
30619
 
@@ -30693,9 +30692,7 @@ const Accordion = (props) => {
30693
30692
  )
30694
30693
  )
30695
30694
  , React$1.createElement('div', { className: `accordion-content ${expandedAcc === index ? 'expanded' : ''}`, __self: undefined, __source: {fileName: _jsxFileName, lineNumber: 72}}
30696
- , React$1.createElement('div', {__self: undefined, __source: {fileName: _jsxFileName, lineNumber: 73}}
30697
- , accordion.content
30698
- )
30695
+ , accordion.content
30699
30696
  )
30700
30697
 
30701
30698
  )