Skip to content

Commit 1d5a453

Browse files
committed
change: spinner and footer
1 parent cb97ec2 commit 1d5a453

File tree

2 files changed

+4
-25
lines changed

2 files changed

+4
-25
lines changed

src/web/components/loading/loading.jsx

+3-24
Original file line numberDiff line numberDiff line change
@@ -5,40 +5,19 @@
55

66
import React from 'react';
77

8-
import styled, {keyframes} from 'styled-components';
8+
import styled from 'styled-components';
99

1010
import Layout from 'web/components/layout/layout';
1111

12-
import GbLogo from 'web/components/icon/svg/greenbone.svg?url';
13-
14-
const Loader = styled.div`
15-
width: 80px;
16-
height: 80px;
17-
margin: 40px auto;
18-
background-image: url(${GbLogo});
19-
background-size: 90%;
20-
background-position: center;
21-
background-repeat: no-repeat;
22-
animation: ${keyframes({
23-
'0%, 100%': {
24-
transform: 'scale(0.9)',
25-
opacity: 0.2,
26-
},
27-
'50%': {
28-
transform: 'scale(1.0)',
29-
opacity: 1,
30-
},
31-
})}
32-
2s infinite ease-in-out;
33-
`;
12+
import {Spinner} from '@greenbone/opensight-ui-components-mantinev7';
3413

3514
const StyledLayout = styled(Layout)`
3615
width: 100%;
3716
`;
3817

3918
const Loading = () => (
4019
<StyledLayout data-testid="loading" align={['center', 'center']}>
41-
<Loader />
20+
<Spinner />
4221
</StyledLayout>
4322
);
4423

src/web/components/structure/footer.jsx

+1-1
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,6 @@
33
* SPDX-License-Identifier: AGPL-3.0-or-later
44
*/
55

6-
76
import React from 'react';
87

98
import styled from 'styled-components';
@@ -12,6 +11,7 @@ import Theme from 'web/utils/theme';
1211

1312
const Link = styled.a`
1413
color: ${Theme.mediumGray};
14+
font-size: 10px;
1515
&:link {
1616
color: ${Theme.mediumGray};
1717
}

0 commit comments

Comments
 (0)