contentoh-components-library 21.4.25 → 21.4.26

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.
@@ -15,6 +15,6 @@ var _variables = require("../../../../global-files/variables");
15
15
 
16
16
  var _templateObject;
17
17
 
18
- var Container = _styledComponents.default.div(_templateObject || (_templateObject = (0, _taggedTemplateLiteral2.default)(["\n width: 100%;\n max-width: 700px;\n min-width: 350px;\n height: 100%;\n display: flex;\n flex-direction: column;\n justify-content: flex-start;\n align-items: flex-start;\n gap: 0px;\n background: white;\n padding: 0px;\n overflow: hidden;\n border-radius: inherit;\n //border: 1px solid red;\n\n .container-chatEmpty {\n width: 100%;\n flex-grow: 2;\n display: flex;\n flex-direction: column;\n justify-content: center;\n align-items: center;\n gap: 18px;\n background-color: transparent;\n\n .icon-chat {\n color: #808080;\n }\n\n label {\n font-family: ", ", sans-serif;\n font-size: 17px;\n text-align: center;\n color: #808080;\n }\n }\n"])), _variables.FontFamily.RobotoRegular);
18
+ var Container = _styledComponents.default.div(_templateObject || (_templateObject = (0, _taggedTemplateLiteral2.default)(["\n width: 100%;\n max-width: 700px;\n min-width: 350px;\n height: 100%;\n display: flex;\n flex-direction: column;\n justify-content: flex-start;\n align-items: flex-start;\n gap: 0px;\n background: white;\n padding: 0px;\n overflow: hidden;\n border-radius: inherit;\n //border: 1px solid red;\n\n .container-chatEmpty {\n width: 100%;\n flex-grow: 2;\n display: flex;\n flex-direction: column;\n justify-content: center;\n align-items: center;\n gap: 18px;\n background-color: transparent;\n\n .icon-chat {\n color: #808080;\n }\n\n label {\n font-family: ", ", sans-serif;\n font-size: 17px;\n text-align: center;\n color: #808080;\n }\n }\n @media (max-width: 600px) {\n min-width: 300px;\n }\n"])), _variables.FontFamily.RobotoRegular);
19
19
 
20
20
  exports.Container = Container;
@@ -16,7 +16,7 @@ var _variables = require("../../../global-files/variables");
16
16
  var _templateObject, _templateObject2, _templateObject3;
17
17
 
18
18
  // Container para chat fixed
19
- var ContainerFixed = _styledComponents.default.div(_templateObject || (_templateObject = (0, _taggedTemplateLiteral2.default)(["\n width: auto;\n max-width: 550px;\n min-width: 325px;\n height: 100%;\n flex-grow: 2;\n background-color: white;\n border: 1px solid #f0f0f0;\n z-index: 1000;\n padding: 0px;\n"])));
19
+ var ContainerFixed = _styledComponents.default.div(_templateObject || (_templateObject = (0, _taggedTemplateLiteral2.default)(["\n width: auto;\n max-width: 550px;\n min-width: 325px;\n height: 100%;\n flex-grow: 2;\n background-color: white;\n border: 1px solid #f0f0f0;\n z-index: 1000;\n padding: 0px;\n @media (max-width: 600px) {\n width: 90%;\n min-width: 300px;\n }\n"])));
20
20
 
21
21
  exports.ContainerFixed = ContainerFixed;
22
22
 
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "contentoh-components-library",
3
- "version": "21.4.25",
3
+ "version": "21.4.26",
4
4
  "dependencies": {
5
5
  "@aws-amplify/auth": "^4.5.3",
6
6
  "@aws-amplify/datastore": "^3.11.0",
@@ -38,4 +38,7 @@ export const Container = styled.div`
38
38
  color: #808080;
39
39
  }
40
40
  }
41
+ @media (max-width: 600px) {
42
+ min-width: 300px;
43
+ }
41
44
  `;
@@ -12,6 +12,10 @@ export const ContainerFixed = styled.div`
12
12
  border: 1px solid #f0f0f0;
13
13
  z-index: 1000;
14
14
  padding: 0px;
15
+ @media (max-width: 600px) {
16
+ width: 90%;
17
+ min-width: 300px;
18
+ }
15
19
  `;
16
20
 
17
21
  export const ContainerBtnPopUpChat = styled.div`