From 7966918c35be6532764bb18b7da22cc40ce42a97 Mon Sep 17 00:00:00 2001 From: charleswrayjr Date: Sat, 13 Sep 2025 12:06:44 -0500 Subject: [PATCH] Working on tailwind and styles. --- src/@lodash/@lodash.js | 2 +- src/index.css | 15 +++++++++------ 2 files changed, 10 insertions(+), 7 deletions(-) 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 -- 2.43.0