summaryrefslogtreecommitdiffstats
path: root/front/odiparpack/app/api
diff options
context:
space:
mode:
Diffstat (limited to 'front/odiparpack/app/api')
-rw-r--r--front/odiparpack/app/api/almacen.js6
-rw-r--r--front/odiparpack/app/api/themePalette.js17
2 files changed, 22 insertions, 1 deletions
diff --git a/front/odiparpack/app/api/almacen.js b/front/odiparpack/app/api/almacen.js
new file mode 100644
index 0000000..dcc629b
--- /dev/null
+++ b/front/odiparpack/app/api/almacen.js
@@ -0,0 +1,6 @@
+import { apiGet } from 'odi-utils/api';
+
+//GET APIS
+export const getAlmacenesAPI = async () => {
+ return await apiGet(`ayuda/almacen`)
+} \ No newline at end of file
diff --git a/front/odiparpack/app/api/themePalette.js b/front/odiparpack/app/api/themePalette.js
index c7971b3..eaec9e7 100644
--- a/front/odiparpack/app/api/themePalette.js
+++ b/front/odiparpack/app/api/themePalette.js
@@ -200,7 +200,22 @@ const themePalette = (color) => ({
secondary: palette[color].palette.secondary,
},
typography: {
- useNextVariants: true,
+ h5: {
+ fontSize: 18,
+ fontWeight: 600,
+ color: "#202A75",
+ margin: "5px 0 10px",
+ },
+ h4: {
+ fontSize: 25,
+ fontWeight: 500,
+ margin: "10px 0 5px",
+ },
+ h6: {
+ fontSize: 17,
+ fontWeight: 420,
+ margin: "0px 0 0px",
+ },
},
});