oddsgate-ds 1.0.108 → 1.0.109

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.108",
3
+ "version": "1.0.109",
4
4
  "description": "Miew theme component library",
5
5
  "main": "dist/cjs/index.js",
6
6
  "module": "dist/esm/index.js",
@@ -11,7 +11,7 @@ export const StyledBlogCard = styled(Card) <IBlogCard>`
11
11
  color: ${colors.secondary50};
12
12
  background-color: ${colors.primary50};
13
13
  border-radius: ${radius.md};
14
- text-align: center;
14
+ text-align:left;
15
15
 
16
16
  ${StyledChip}{
17
17
  position: absolute;
@@ -35,9 +35,5 @@ export const StyledBlogCard = styled(Card) <IBlogCard>`
35
35
 
36
36
  }
37
37
  }
38
-
39
- @media only screen and (min-width: ${variables.responsiveMedia}) {
40
- text-align:left;
41
- }
42
38
  `;
43
39
 
@@ -11,7 +11,7 @@ export const StyledNewsCard = styled(Card) <INewsCard>`
11
11
  color: ${colors.secondary50};
12
12
  background-color: ${colors.third10};
13
13
  border-radius: ${radius.md};
14
- text-align:center;
14
+ text-align:left;
15
15
 
16
16
  ${StyledChip}{
17
17
  position: absolute;
@@ -69,10 +69,5 @@ export const StyledNewsCard = styled(Card) <INewsCard>`
69
69
 
70
70
  }
71
71
  }
72
-
73
-
74
- @media only screen and (min-width: ${variables.responsiveMedia}) {
75
- text-align:left;
76
- }
77
72
  `;
78
73
 
@@ -5,7 +5,6 @@ import styled from 'styled-components';
5
5
  export const StyledCircularSlider = styled.div<ICircularSlider>`
6
6
  position: relative;
7
7
  width: 100%;
8
- min-height: 100dvh;
9
8
  overflow: hidden;
10
9
 
11
10
  & > svg{
@@ -19,6 +18,7 @@ export const StyledCircularSlider = styled.div<ICircularSlider>`
19
18
  }
20
19
 
21
20
  @media only screen and (min-width: ${responsiveMedia}) {
21
+ min-height: 100dvh;
22
22
  & > svg{
23
23
  display: block;
24
24
  }