Jay
09/22/2022, 5:39 PMrake stdout: Nothing written
rake stderr: autoprefixer: /home/deploy/BizDigital/releases/20220922163654/vendor/assets/stylesheets/spree/backend/all.css:1625:368: Replace color-adjust to print-color-adjust. The color-adjust shorthand is currently deprecated.
rake aborted!
SassC::SyntaxError: Error: Function rgb is missing argument $green.
on line 14722 of stdin
>> box-shadow: 0 15px 40px -5px rgb(0 0 0 / 26%);
thanks in advancewaiting_for_dev
09/23/2022, 4:16 AMJay
09/23/2022, 5:38 AMJay
09/23/2022, 7:21 AMJay
09/23/2022, 7:22 AM01 $HOME/.rbenv/bin/rbenv exec bundle exec rake assets:precompile
01 autoprefixer: /home/deploy/BizDigital/releases/20220923064132/vendor/assets/stylesheets/spree/backend/all.css:1625:368: Replace color-adjust to print-color-adjust. The color-adjust shorthand is currently deprecated.
01 rake aborted!
01 SassC::SyntaxError: Error: Function rgb is missing argument $green.
01 on line 14722 of stdin
01 >> box-shadow: 0 15px 40px -5px rgb(0 0 0 / 26%);
01
01 -------------------------------^
01 stdin:14722
Jay
09/23/2022, 7:23 AMwaiting_for_dev
09/23/2022, 8:47 AMwaiting_for_dev
09/23/2022, 8:52 AMwaiting_for_dev
09/23/2022, 8:53 AMrgb
function rgb($red, $green, $blue, $opacity)
waiting_for_dev
09/23/2022, 8:53 AMwaiting_for_dev
09/23/2022, 8:53 AMJay
09/23/2022, 8:58 AMrgb(0 0 0 / 26%);
to
rgba(0,0,0,0.26);
and that fixed it. Thanks alot