Last active
May 22, 2021 10:22
-
-
Save dipeshhkc/8c137aa5c01e6772bf5c20cb165caf7c to your computer and use it in GitHub Desktop.
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
//on root CSS file (:root CSS pseudo-class matches the root element of a tree representing the document) | |
:root { | |
--amplify-primary-color: #1890FF; | |
--amplify-primary-tint: #1890FF; | |
--amplify-primary-shade: #1890FF; | |
} | |
// OR directly on root amplify-authenticator component | |
amplify-authenticator { | |
--amplify-primary-color: #1890FF; | |
--amplify-primary-tint: #1890FF; | |
--amplify-primary-shade: #1890FF; | |
display: flex, | |
justifyContent: center, | |
alignItems: center, | |
flex: 1, | |
height: 100vh, | |
}, |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment