Skip to content

Commit 454a1ea

Browse files
Adjust styling
1 parent f8f81cf commit 454a1ea

1 file changed

Lines changed: 10 additions & 5 deletions

File tree

Lines changed: 10 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -1,23 +1,28 @@
11
import * as React from 'react';
22
import styled from 'styled-components';
33

4+
const Container = styled.div`
5+
display: flex;
6+
flex-direction: column;
7+
align-items: center;
8+
gap: 1em;
9+
padding: 1em;
10+
`;
11+
412
const FirstRow = styled.div`
513
font-size: x-large;
614
font-weight: 600;
7-
text-align: center;
8-
margin-bottom: 0.5em;
915
`;
1016

1117
const SecondRow = styled.div`
12-
text-align: center;
1318
color: var(--vscode-descriptionForeground);
1419
`;
1520

1621
export const VariantAnalysisLoading = () => {
1722
return (
18-
<div>
23+
<Container>
1924
<FirstRow>We are getting everything ready</FirstRow>
2025
<SecondRow>Results will appear here shortly</SecondRow>
21-
</div>
26+
</Container>
2227
);
2328
};

0 commit comments

Comments
 (0)