@secondstaxorg/sscomp 1.7.83 → 1.7.84

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
@@ -22539,6 +22539,7 @@ const SearchResultsBar = (props) => {
22539
22539
 
22540
22540
  const ModalBackdrop = styled.div`
22541
22541
  position: absolute;
22542
+ overflow: clip;
22542
22543
  width: 100%;
22543
22544
  height: 100%;
22544
22545
  left: 0;
@@ -22547,11 +22548,12 @@ const ModalBackdrop = styled.div`
22547
22548
  z-index: 9999;
22548
22549
  `;
22549
22550
 
22551
+ const panelWidth = 510;
22550
22552
  const SideModalContainer = styled.div`
22551
22553
  position: absolute;
22552
22554
  right: 0;
22553
22555
  top: 0;
22554
- width: 510px;
22556
+ width: ${panelWidth}px;
22555
22557
  height:100%;
22556
22558
  background: ${theme.colors.white};
22557
22559
  padding: 0;
@@ -22559,14 +22561,12 @@ const SideModalContainer = styled.div`
22559
22561
  animation: 0.3s slideIn ease-out;
22560
22562
  @keyframes slideIn{
22561
22563
  from{
22562
- transform: scaleX(0.95);
22563
- transform-origin: right;
22564
- //opacity: 0.7;
22564
+ right: -${panelWidth}px;
22565
+ opacity: 0.5;
22565
22566
  }
22566
22567
  to{
22567
- transform: scaleX(1);
22568
- transform-origin: right;
22569
- //opacity: 1;
22568
+ right: 0;
22569
+ opacity: 1;
22570
22570
  }
22571
22571
  }
22572
22572
  `;