oddsgate-ds 1.0.77 → 1.0.79

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": "oddsgate-ds",
3
- "version": "1.0.77",
3
+ "version": "1.0.79",
4
4
  "description": "Miew theme component library",
5
5
  "main": "dist/cjs/index.js",
6
6
  "module": "dist/esm/index.js",
@@ -31,13 +31,13 @@ export const StyledCircularSliderWrapper = styled.div<ICircularSlider>`
31
31
  justify-content: center;
32
32
  margin: 0 auto;
33
33
  margin-right: 0;
34
- /* top: 50%;
34
+ top: 50%;
35
35
  transform: translate(23%, -50%);
36
36
 
37
37
  @media only screen and (min-width: ${responsiveMedia}) {
38
38
  transform: translate(65%, -50%);
39
39
 
40
- } */
40
+ }
41
41
  `;
42
42
 
43
43
  export const StyledCircularSliderSlides = styled.div<ICircularSlider>`
@@ -59,7 +59,7 @@ const Tabs = ({ id, title, menu, vertical, className, style }: ITabs) => {
59
59
  </StyledTabsMenu>
60
60
  </div>
61
61
  {menu && (
62
- <div ref={tabsContent as any}>
62
+ <div ref={tabsContent as any} className='position-relative'>
63
63
  {menu.map((item, index) => {
64
64
  return (
65
65
  <StyledTabsContent
@@ -96,7 +96,6 @@ export const StyledTabs = styled.div<ITabs>`
96
96
  flex-grow: 1;
97
97
  }
98
98
  &:last-child{
99
- position:relative;
100
99
  width: 40%;
101
100
  flex-shrink: 1;
102
101
  }