Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Add a bit of spacing before Installed extensions title #7152

Merged
merged 2 commits into from
Feb 14, 2023
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Jump to
Jump to file
Failed to load files.
Diff view
Diff view
Original file line number Diff line number Diff line change
Expand Up @@ -423,6 +423,9 @@ exports[`extensions - navigation using application menu when navigating to exten
: you can drag and drop a tarball file to this area
</small>
</section>
<div
class="size-md"
/>
<div>
<div
class="Spinner singleColor center"
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -37,6 +37,7 @@ import installOnDropInjectable from "./install-on-drop.injectable";
import { supportedExtensionFormats } from "./supported-extension-formats";
import extensionInstallationStateStoreInjectable from "../../../extensions/extension-installation-state-store/extension-installation-state-store.injectable";
import type { ExtensionInstallationStateStore } from "../../../extensions/extension-installation-state-store/extension-installation-state-store";
import Gutter from "../gutter/gutter";

interface Dependencies {
userExtensions: IComputedValue<InstalledExtension[]>;
Expand Down Expand Up @@ -113,6 +114,8 @@ class NonInjectedExtensions extends React.Component<Dependencies> {
installPath={this.installPath}
/>

<Gutter size="md" />

<InstalledExtensions
extensions={userExtensions}
enable={this.props.enableExtension}
Expand Down