private setCustomStyleSheet()

in authui-container/src/sign-in-ui.ts [120:127]


  private setCustomStyleSheet(configs) {
    for (const apiKey in configs) {
      if (configs.hasOwnProperty(apiKey) && configs[apiKey].styleUrl) {
        setStyleSheet(document, configs[apiKey].styleUrl);
        break;
      }
    }
  }