Octasol / octasol

Octasol - An open-source, trustless bounty platform on Solana, utilizing an escrow mechanism for secure transactions. It allows organizations to list bounties while verified developers can compete and win them without trust concerns.
https://octasol.io
GNU General Public License v3.0
14 stars 11 forks source link

[FIX] Backdrop-Filter Blur Issue in Safari for Loader Component #11

Open mayank-dev07 opened 1 day ago

mayank-dev07 commented 1 day ago

Description

The backdrop-filter class used in the loader component is not working in Safari due to compatibility issues. Safari requires the use of the -webkit-backdrop-filter CSS property for proper functionality. The blur effect in the loader component needs to be applied using the -webkit prefix to ensure cross-browser compatibility.

Tasks

  1. Analyze the current implementation of the backdrop-filter class in the loader component.
  2. Add the -webkit-backdrop-filter property to support Safari:
    • Apply the blur effect using -webkit-backdrop-filter for Safari compatibility.
  3. Test the fix across browsers:
    • Ensure that the blur effect works on Safari as well as on other browsers like Chrome, Firefox, and Edge.
    • Test on both desktop and mobile versions of Safari.

Additional Information

Expected Outcome

The loader component should properly display the blur effect on Safari browsers by utilizing the -webkit-backdrop-filter property, ensuring a consistent visual experience across all browsers.