RedditAuthChromeStyle.swift 388 B

123456789101112
  1. import Foundation
  2. enum RedditAuthChromeStyle {
  3. /// Placeholder for optional Reddit auth UI tweaks. Close buttons are left visible
  4. /// so users can dismiss the login modal if sign-in fails or stalls.
  5. static let injectionScript = """
  6. (function() {
  7. const STYLE_ID = 'reddora-auth-chrome-style';
  8. if (document.getElementById(STYLE_ID)) return;
  9. })();
  10. """
  11. }