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
diff --git a/node_modules/@aws-amplify/auth/dist/esm/providers/cognito/apis/signInWithRedirect.mjs b/node_modules/@aws-amplify/auth/dist/esm/providers/cognito/apis/signInWithRedirect.mjs | |
index ed3ad4b..e88dcca 100644 | |
--- a/node_modules/@aws-amplify/auth/dist/esm/providers/cognito/apis/signInWithRedirect.mjs | |
+++ b/node_modules/@aws-amplify/auth/dist/esm/providers/cognito/apis/signInWithRedirect.mjs | |
@@ -17,6 +17,9 @@ import { completeOAuthFlow } from '../utils/oauth/completeOAuthFlow.mjs'; | |
import '../../../types/Auth.mjs'; | |
import { createOAuthError } from '../utils/oauth/createOAuthError.mjs'; | |
import { listenForOAuthFlowCancellation } from '../utils/oauth/cancelOAuthFlow.mjs'; | |
+import { Browser } from '@capacitor/browser'; | |
+import { App } from '@capacitor/app'; |
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
ln -s /path/to/original /path/to/link |
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
.reverse { | |
mix-blend-mode: exclusion; | |
filter: invert(1); | |
} |
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
const { body } = document | |
/** | |
* Opening the modal: | |
* Record the body width | |
* Set body overflow to hidden | |
* Explicitly set the body width to what it was in step 1. | |
*/ | |
const oldWidth = body.offsetWidth | |
body.classList.add('overflow-hidden') |
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
html { | |
/* Adjust font size */ | |
font-size: 100%; | |
-webkit-text-size-adjust: 100%; | |
/* Font varient */ | |
font-variant-ligatures: none; | |
-webkit-font-variant-ligatures: none; | |
/* Smoothing */ | |
text-rendering: optimizeLegibility; | |
-moz-osx-font-smoothing: grayscale; |
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
@mixin media($media) { | |
@if $media == phone-only { | |
@media only screen and (max-width: 599px) { @content; } | |
} | |
@else if $media == tablet-p { | |
@media only screen and (min-width: 600px) { @content; } | |
} | |
@else if $media == tablet-p-only { | |
@media only screen and (min-width: 600px) and (max-width: 899px) { @content; } | |
} |