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/dist/cjs/index.js +1 -1
- package/dist/cjs/index.js.map +1 -1
- package/dist/esm/index.js +5 -5
- package/dist/esm/index.js.map +1 -1
- package/package.json +1 -1
- package/src/components/molecules/CategoriesWrapper/CategoriesWrapper.theme.ts +8 -9
- package/src/components/organisms/Glossary/Glossary.themes.ts +7 -7
package/package.json
CHANGED
|
@@ -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:
|
|
15
|
+
font-size: 3rem;
|
|
16
16
|
font-weight: 700;
|
|
17
17
|
@media (max-width: ${responsiveMedia}) {
|
|
18
|
-
font-size:
|
|
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:
|
|
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
|
-
|
|
37
|
-
|
|
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:
|
|
44
|
-
font-size:
|
|
45
|
-
padding:
|
|
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:
|
|
24
|
-
margin-bottom:
|
|
23
|
+
margin-top: 6rem;
|
|
24
|
+
margin-bottom: 7.5rem;
|
|
25
25
|
@media (max-width: ${responsiveMedia}) {
|
|
26
|
-
margin-top:
|
|
27
|
-
margin-bottom:
|
|
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:
|
|
41
|
+
font-size: 2.25rem;
|
|
42
42
|
font-weight: 700;
|
|
43
43
|
@media (max-width: ${responsiveMedia}) {
|
|
44
|
-
font-size:
|
|
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
|
`;
|