File tree 2 files changed +4
-25
lines changed
2 files changed +4
-25
lines changed Original file line number Diff line number Diff line change 5
5
6
6
import React from 'react' ;
7
7
8
- import styled , { keyframes } from 'styled-components' ;
8
+ import styled from 'styled-components' ;
9
9
10
10
import Layout from 'web/components/layout/layout' ;
11
11
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' ;
34
13
35
14
const StyledLayout = styled ( Layout ) `
36
15
width: 100%;
37
16
` ;
38
17
39
18
const Loading = ( ) => (
40
19
< StyledLayout data-testid = "loading" align = { [ 'center' , 'center' ] } >
41
- < Loader />
20
+ < Spinner />
42
21
</ StyledLayout >
43
22
) ;
44
23
Original file line number Diff line number Diff line change 3
3
* SPDX-License-Identifier: AGPL-3.0-or-later
4
4
*/
5
5
6
-
7
6
import React from 'react' ;
8
7
9
8
import styled from 'styled-components' ;
@@ -12,6 +11,7 @@ import Theme from 'web/utils/theme';
12
11
13
12
const Link = styled . a `
14
13
color: ${ Theme . mediumGray } ;
14
+ font-size: 10px;
15
15
&:link {
16
16
color: ${ Theme . mediumGray } ;
17
17
}
You can’t perform that action at this time.
0 commit comments