This repository has been archived by the owner. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 49
add qs for new code patterns #11
Merged
Merged
Changes from 1 commit
Commits
Show all changes
7 commits
Select commit
Hold shift + click to select a range
749a067
add qs for new code patterns
DarylThayil c933c29
update lib + code changes
DarylThayil 8e63208
add login type
DarylThayil 4f8ca48
Update the dist
sameerag 9e1645d
Update the index.html to point to the new .min.js
sameerag 413ceaf
Added comments
aashiman 1fd81f5
use msal.js 1.0.0-preview.4
navyasric File filter
Filter by extension
Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
There are no files selected for viewing
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| Original file line number | Diff line number | Diff line change |
|---|---|---|
| @@ -0,0 +1,2 @@ | ||
| node_modules | ||
| package-lock.json |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Large diffs are not rendered by default.
Oops, something went wrong.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| Original file line number | Diff line number | Diff line change |
|---|---|---|
| @@ -0,0 +1,43 @@ | ||
| body { | ||
| height: 100%; | ||
| background-color: #2b5797; /* For browsers that do not support gradients */ | ||
| background-image: linear-gradient(-90deg, #2b5797, #603cba); /* Standard syntax (must be last) */ | ||
| } | ||
| .container { | ||
| width: 100%; | ||
| min-height: 600px; | ||
| } | ||
|
|
||
| .leftContainer { | ||
| color: white; | ||
| font-size: 50px; | ||
DarylThayil marked this conversation as resolved.
Outdated
Show resolved
Hide resolved
|
||
| font-weight: 200; | ||
| text-align: center; | ||
| } | ||
|
|
||
| .leftContainer, .rightContainer { | ||
| float: left; | ||
| width: 100%; | ||
| max-width: 800px; | ||
| } | ||
|
|
||
| #SignIn { | ||
| height: 50px; | ||
| width: 150px; | ||
| background-color: #00A4EF; | ||
| padding: 14px 24px; | ||
| border: 0 none; | ||
| font-weight: 700; | ||
| letter-spacing: 1px; | ||
| text-transform: uppercase; | ||
| color: white; | ||
| } | ||
| #json { | ||
| background-color: white; | ||
| opacity: 0.85; | ||
| min-height: 600px; | ||
| width: 100%; | ||
| display: block; | ||
| font-size: 14px; | ||
| overflow: scroll; | ||
| } | ||
Add this suggestion to a batch that can be applied as a single commit.
This suggestion is invalid because no changes were made to the code.
Suggestions cannot be applied while the pull request is closed.
Suggestions cannot be applied while viewing a subset of changes.
Only one suggestion per line can be applied in a batch.
Add this suggestion to a batch that can be applied as a single commit.
Applying suggestions on deleted lines is not supported.
You must change the existing code in this line in order to create a valid suggestion.
Outdated suggestions cannot be applied.
This suggestion has been applied or marked resolved.
Suggestions cannot be applied from pending reviews.
Suggestions cannot be applied on multi-line comments.
Suggestions cannot be applied while the pull request is queued to merge.
Suggestion cannot be applied right now. Please check back later.
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
validateAuthority is by default true. Can we remove the explicitly setting if not needed again? This will be one extra option to explain in the quickstart.