We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent f8f81cf commit 454a1eaCopy full SHA for 454a1ea
1 file changed
extensions/ql-vscode/src/view/variant-analysis/VariantAnalysisLoading.tsx
@@ -1,23 +1,28 @@
1
import * as React from 'react';
2
import styled from 'styled-components';
3
4
+const Container = styled.div`
5
+ display: flex;
6
+ flex-direction: column;
7
+ align-items: center;
8
+ gap: 1em;
9
+ padding: 1em;
10
+`;
11
+
12
const FirstRow = styled.div`
13
font-size: x-large;
14
font-weight: 600;
- text-align: center;
- margin-bottom: 0.5em;
15
`;
16
17
const SecondRow = styled.div`
18
color: var(--vscode-descriptionForeground);
19
20
21
export const VariantAnalysisLoading = () => {
22
return (
- <div>
23
+ <Container>
24
<FirstRow>We are getting everything ready</FirstRow>
25
<SecondRow>Results will appear here shortly</SecondRow>
- </div>
26
+ </Container>
27
);
28
};
0 commit comments