forstok-ui-lib 5.2.23 → 5.2.24

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/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "forstok-ui-lib",
3
- "version": "5.2.23",
3
+ "version": "5.2.24",
4
4
  "description": "Forstok UI Components Library",
5
5
  "path": "dist",
6
6
  "main": "dist/index.js",
@@ -194,7 +194,7 @@ export const InfoGroup = styled.div`
194
194
  width: 100%;
195
195
  justify-content: left;
196
196
  margin-bottom: 14px;
197
- span:first-child {
197
+ > span:first-child {
198
198
  position: relative;
199
199
  &:after {
200
200
  position: absolute;
@@ -70,7 +70,7 @@ const getDropDownContainerModifiedStyled = ({ $top, $bottom, $placement, $alias,
70
70
  @media only screen and (min-width: 768px) {
71
71
  & ${DropDownWrapper} {
72
72
  display: grid;
73
- ${$placement === 'top' ? `animation: dropgodown .075s linear; bottom: ${$bottom || '35px'};` : `animation: droptodown .075s linear; top: ${$top || '35px'};`}
73
+ ${$placement === 'top' ? `animation: dropgodown .075s linear; bottom: ${$bottom || '35px'}; top: auto;` : `animation: droptodown .075s linear; top: ${$top || '35px'};`}
74
74
  left: ${($alias === "_dropdownFilterContainer" && $openPosition !== 'left') ? '100%': $openPosition === 'left' ? '0' : 'auto'};
75
75
  }
76
76
  }