@sk-web-gui/core 0.1.34 → 0.1.35

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": "@sk-web-gui/core",
3
- "version": "0.1.34",
3
+ "version": "0.1.35",
4
4
  "license": "MIT",
5
5
  "main": "src/index.js",
6
6
  "files": [
@@ -31,5 +31,5 @@
31
31
  "postcss-import": "^14.0.2",
32
32
  "tailwindcss": "^2.2.4"
33
33
  },
34
- "gitHead": "7f394c9a25f1bd8bcd43d4b259ad025c146b1527"
34
+ "gitHead": "aa805b28878fb4a93340d14695314a0307869fb4"
35
35
  }
@@ -17,7 +17,7 @@ module.exports = Accordion = (colors) => ({
17
17
  },
18
18
 
19
19
  '&-toggle': {
20
- '@apply flex items-center inline-block text-lg leading-lg text-left text-lg mx-lg my-md': {},
20
+ '@apply flex items-center inline-block text-lg leading-lg text-left text-lg mx-md sm:mx-lg my-md': {},
21
21
  fontWeight: 'bold',
22
22
  //"@apply focus-visible:shadow shadow-lg": {},
23
23
  '&:focus-visible': {
@@ -25,8 +25,11 @@ module.exports = Accordion = (colors) => ({
25
25
  outline: '0',
26
26
  //"@apply border-4": {},
27
27
  },
28
+ '.accordion-title': {
29
+ '@apply mr-md text-base leading-base md:text-lg md:leading-lg': {},
30
+ },
28
31
  '.accordion-subtitle': {
29
- '@apply m-0 text-sm font-normal': {},
32
+ '@apply m-0 mr-md text-sm font-normal': {},
30
33
  },
31
34
  },
32
35
 
@@ -16,7 +16,7 @@ module.exports = CookieConsent = () => ({
16
16
  },
17
17
 
18
18
  '&-title': {
19
- '@apply text-2xl leading-2xl mb-1 mt-4': {},
19
+ '@apply text-2xl leading-2xl mb-1 mt-4 break-words': {},
20
20
  },
21
21
 
22
22
  '&-description': {
@@ -1,7 +1,7 @@
1
1
  module.exports = Footer = (colors) => ({
2
2
  '.footer': {
3
3
  '&-innerwrapper': {
4
- '@apply bg-gray text-white py-12 px-2 sm:p-12': {},
4
+ '@apply bg-gray text-white py-12': {},
5
5
 
6
6
  ...colors.reduce(
7
7
  (styles, color) => ({
@@ -15,11 +15,11 @@ module.exports = Footer = (colors) => ({
15
15
  },
16
16
 
17
17
  '&-content': {
18
- '@apply container md:flex items-center justify-center m-auto': {},
18
+ '@apply px-md md:flex items-center justify-center m-auto': {},
19
19
  },
20
20
 
21
21
  '&-bottomlinks': {
22
- '@apply bg-gray-middle text-body py-12 px-2 sm:p-12': {},
22
+ '@apply bg-gray-middle text-body py-md': {},
23
23
 
24
24
  ...colors.reduce(
25
25
  (styles, color) => ({
@@ -32,8 +32,10 @@ module.exports = Footer = (colors) => ({
32
32
  ),
33
33
 
34
34
  '&-container': {
35
- '@apply container flex items-start md:items-center justify-center m-auto md:space-x-10 flex-col md:flex-row':
36
- {},
35
+ '@apply px-md flex items-center items-center justify-center m-auto md:space-x-10 flex-col md:flex-row': {},
36
+ '> *': {
37
+ '@apply text-body text-sm leading-sm py-sm': {},
38
+ },
37
39
  },
38
40
  },
39
41
  },