From 9c55a39116fbd587e367f4a69548685d1f3a2a65 Mon Sep 17 00:00:00 2001 From: asvinb Date: Thu, 31 Oct 2024 14:18:20 +0400 Subject: [PATCH] Add missing styles. --- js/src/components/google-combo-account-card/index.js | 1 + js/src/components/google-combo-account-card/index.scss | 5 +++++ 2 files changed, 6 insertions(+) create mode 100644 js/src/components/google-combo-account-card/index.scss diff --git a/js/src/components/google-combo-account-card/index.js b/js/src/components/google-combo-account-card/index.js index c1db3e5391..fdcfb2a525 100644 --- a/js/src/components/google-combo-account-card/index.js +++ b/js/src/components/google-combo-account-card/index.js @@ -7,6 +7,7 @@ import AccountCard from '.~/components/account-card'; import RequestFullAccessGoogleAccountCard from '../google-account-card/request-full-access-google-account-card'; import ConnectGoogleComboAccountCard from './connect-google-combo-account-card'; import ConnectedGoogleComboAccountCard from './connected-google-combo-account-card'; +import './index.scss'; export default function GoogleComboAccountCard( { disabled = false } ) { const { google, scope, hasFinishedResolution } = useGoogleAccount(); diff --git a/js/src/components/google-combo-account-card/index.scss b/js/src/components/google-combo-account-card/index.scss new file mode 100644 index 0000000000..0f59a5c384 --- /dev/null +++ b/js/src/components/google-combo-account-card/index.scss @@ -0,0 +1,5 @@ +.gla-google-combo-account-card { + .gla-account-card__actions .app-button { + margin-left: calc(var(--main-gap) / -2); + } +}