diff --git a/public/assets/css/default.css b/public/assets/css/default.css index db070129..8503dc87 100644 --- a/public/assets/css/default.css +++ b/public/assets/css/default.css @@ -30,11 +30,6 @@ width: 45px; } - - -.app-brand-logo-border { - border: 1px solid #d5d5d5; -} .app-brand-text { font-size: 1.75rem; letter-spacing: -0.5px; @@ -165,10 +160,9 @@ thead tr { .app-brand-logo-login { max-width: 50px; /* default for mobile */ - height: auto; /* keep aspect ratio */ + height: auto; /* keep aspect ratio */ } - /* Tablet and up (≥768px) */ @media (min-width: 768px) { .app-brand-logo-login { @@ -182,4 +176,3 @@ thead tr { max-width: 80px; } } - diff --git a/public/img/app/error in filter of expenses .png b/public/img/app/error in filter of expenses .png new file mode 100644 index 00000000..ee2034bb Binary files /dev/null and b/public/img/app/error in filter of expenses .png differ diff --git a/public/img/app/should be expense category .png b/public/img/app/should be expense category .png new file mode 100644 index 00000000..5e7e36e0 Binary files /dev/null and b/public/img/app/should be expense category .png differ diff --git a/public/img/illustrations/02.png b/public/img/illustrations/02.png new file mode 100644 index 00000000..dba19e98 Binary files /dev/null and b/public/img/illustrations/02.png differ diff --git a/public/img/illustrations/03.png b/public/img/illustrations/03.png new file mode 100644 index 00000000..45d19881 Binary files /dev/null and b/public/img/illustrations/03.png differ diff --git a/public/img/illustrations/gap between grid header and message.png b/public/img/illustrations/gap between grid header and message.png new file mode 100644 index 00000000..9461a532 Binary files /dev/null and b/public/img/illustrations/gap between grid header and message.png differ diff --git a/public/img/illustrations/payment request.png b/public/img/illustrations/payment request.png new file mode 100644 index 00000000..8d8a289b Binary files /dev/null and b/public/img/illustrations/payment request.png differ diff --git a/public/img/illustrations/prom-min.webp b/public/img/illustrations/prom-min.webp new file mode 100644 index 00000000..0cccb84b Binary files /dev/null and b/public/img/illustrations/prom-min.webp differ diff --git a/src/components/common/DatePicker.jsx b/src/components/common/DatePicker.jsx index d00b6329..9a3890fa 100644 --- a/src/components/common/DatePicker.jsx +++ b/src/components/common/DatePicker.jsx @@ -9,6 +9,7 @@ const DatePicker = ({ allowText = false, maxDate, minDate, + disabled = false, ...rest }) => { const inputRef = useRef(null); @@ -64,6 +65,7 @@ const DatePicker = ({ }} readOnly={!allowText} autoComplete="off" + disabled={disabled} /> { const [filteredList, setFilteredList] = useState([]); const [showSuggestions, setShowSuggestions] = useState(false); @@ -34,6 +35,7 @@ const InputSuggestions = ({ onFocus={() => { if (value) setShowSuggestions(true); }} + disabled={disabled} /> {showSuggestions && filteredList.length > 0 && (