From: charleswrayjr Date: Sat, 13 Sep 2025 17:06:44 +0000 (-0500) Subject: Working on tailwind and styles. X-Git-Url: https://git.phasecustomsoft.com/?a=commitdiff_plain;h=7966918c35be6532764bb18b7da22cc40ce42a97;p=phs-admin.git Working on tailwind and styles. --- diff --git a/src/@lodash/@lodash.js b/src/@lodash/@lodash.js index 037431c..ddb56ca 100755 --- a/src/@lodash/@lodash.js +++ b/src/@lodash/@lodash.js @@ -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); }, diff --git a/src/index.css b/src/index.css index 17df0e7..7f25905 100755 --- a/src/index.css +++ b/src/index.css @@ -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