]> PHS Git Server - phs-admin.git/commitdiff
Working on tailwind and styles.
authorcharleswrayjr <charleswrayjr@gmail.com>
Sat, 13 Sep 2025 17:06:44 +0000 (12:06 -0500)
committercharleswrayjr <charleswrayjr@gmail.com>
Sat, 13 Sep 2025 17:06:44 +0000 (12:06 -0500)
src/@lodash/@lodash.js
src/index.css

index 037431c47acd7bbb7e8f757e875b20edd3de98d8..ddb56ca158eecdcb1e78109276a9f4e26002c498 100755 (executable)
@@ -8,10 +8,10 @@ import __ from 'lodash';
 const _ = __.runInContext({});
 
 _.mixin({
+  ..._,
   truncateString: (str, maxLength) => {
     return _.truncate(str, { length: maxLength, omission: '...' });
   },
-  // Immutable Set for setting state
   setIn: (state, name, value) => {
     return _.setWith(_.clone(state), name, value, _.clone);
   },
index 17df0e7ec76e7107ab9e336439ef2c29daa4f300..7f25905954c4fdbc4a082ad2a5d32d038dc41ee0 100755 (executable)
@@ -1,17 +1,20 @@
+/* src/index.css */
 @tailwind base;
 @tailwind components;
 @tailwind utilities;
 
+@import './styles/App.css';
+
 body {
-  margin: 0;
-  font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', 'Roboto', 'Oxygen',
+    margin: 0;
+    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', 'Roboto', 'Oxygen',
     'Ubuntu', 'Cantarell', 'Fira Sans', 'Droid Sans', 'Helvetica Neue',
     sans-serif;
-  -webkit-font-smoothing: antialiased;
-  -moz-osx-font-smoothing: grayscale;
+    -webkit-font-smoothing: antialiased;
+    -moz-osx-font-smoothing: grayscale;
 }
 
 code {
-  font-family: source-code-pro, Menlo, Monaco, Consolas, 'Courier New',
+    font-family: source-code-pro, Menlo, Monaco, Consolas, 'Courier New',
     monospace;
-}
+}
\ No newline at end of file