oddsgate-ds 1.0.226 → 1.0.227

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.226",
3
+ "version": "1.0.227",
4
4
  "description": "Miew theme component library",
5
5
  "main": "dist/cjs/index.js",
6
6
  "module": "dist/esm/index.js",
@@ -12,16 +12,16 @@ export const StyledCategorySeparator = styled.div`
12
12
  align-items: center;
13
13
  width: 100%;
14
14
  gap: 0.75rem;
15
- font-size: 48px;
15
+ font-size: 3rem;
16
16
  font-weight: 700;
17
17
  @media (max-width: ${responsiveMedia}) {
18
- font-size: 32px;
18
+ font-size: 2rem;
19
19
  }
20
20
  `
21
21
  export const StyledCategorySeparatorLine = styled.div`
22
22
  flex-grow: 1;
23
23
  height: 50%;
24
- border-bottom: 1px solid ${colors.gray20};
24
+ border-bottom: 0.0625rem solid ${colors.gray20};
25
25
  opacity: 0.5;
26
26
  `
27
27
 
@@ -33,16 +33,15 @@ export const StyledCategoryContent = styled.div`
33
33
  `
34
34
  export const StyledCategoryItem = styled.div`
35
35
  button {
36
- height: 34px;
37
- padding: 10px 40px;
38
- font-size: 24px;
36
+ padding: 0.625rem 2.5rem;
37
+ font-size: 1.5rem;
39
38
  font-weight: 700;
40
39
  text-transform: none;
41
40
 
42
41
  @media (max-width: ${responsiveMedia}) {
43
- height: 28px;
44
- font-size: 20px;
45
- padding: 5px 20px;
42
+ height: 1.75rem;
43
+ font-size: 1.25rem;
44
+ padding: 0.3125rem 1.25rem;
46
45
  }
47
46
  }
48
47
  `
@@ -20,11 +20,11 @@ export const StyledNoResultsContainer = styled.div`
20
20
  flex-direction: column;
21
21
  align-items: center;
22
22
  justify-content: center;
23
- margin-top: 96px;
24
- margin-bottom: 120px;
23
+ margin-top: 6rem;
24
+ margin-bottom: 7.5rem;
25
25
  @media (max-width: ${responsiveMedia}) {
26
- margin-top: 64px;
27
- margin-bottom: 80px;
26
+ margin-top: 4rem;
27
+ margin-bottom: 5rem;
28
28
  }
29
29
  `
30
30
  export const StyledNoResultsTitle = styled.h1`
@@ -38,10 +38,10 @@ export const StyledNoResultsTitle = styled.h1`
38
38
  `
39
39
  export const StyledNoResultsSubtitle = styled.h4`
40
40
  color: ${colors.gray20};
41
- font-size: 36px;
41
+ font-size: 2.25rem;
42
42
  font-weight: 700;
43
43
  @media (max-width: ${responsiveMedia}) {
44
- font-size: 24px;
44
+ font-size: 1.5rem;
45
45
  }
46
46
  `
47
47
  export const StyledBackButtonContainer = styled.div`
@@ -53,10 +53,10 @@ export const StyledBackButtonContainer = styled.div`
53
53
  & > button {
54
54
  text-transform: none;
55
55
  font-size: 1.5rem;
56
- height: 34px;
57
56
  display: flex;
58
57
  align-items: center;
59
58
  justify-content: center;
60
59
  font-weight: 700;
60
+ padding: 0.5rem 1.25rem;
61
61
  }
62
62
  `;