aboutsummaryrefslogtreecommitdiff
path: root/src/console/components
diff options
context:
space:
mode:
Diffstat (limited to 'src/console/components')
-rw-r--r--src/console/components/console/CompletionItem.tsx4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/console/components/console/CompletionItem.tsx b/src/console/components/console/CompletionItem.tsx
index 46cd95c..5f2f9f6 100644
--- a/src/console/components/console/CompletionItem.tsx
+++ b/src/console/components/console/CompletionItem.tsx
@@ -6,7 +6,7 @@ const Container = styled.li<{
icon: string;
highlight: boolean;
}>`
- backgroundimage: ${({ icon }) => "url(" + icon + ")"};
+ background-image: ${({ icon }) => "url(" + icon + ")"};
background-color: ${({ highlight, theme }) =>
highlight
? theme.completionSelectedBackground
@@ -16,7 +16,7 @@ const Container = styled.li<{
? theme.completionSelectedForeground
: theme.completionItemForeground};
display: ${({ shown }) => (shown ? "display" : "none")};
- padding-left: 1.5rem;
+ padding-left: 1.8rem;
background-position: 0 center;
background-size: contain;
background-repeat: no-repeat;