You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
27 lines
625 B
27 lines
625 B
import { css, Global } from '@emotion/react';
|
|
import React from 'react';
|
|
import useSiteToken from '../../../hooks/useSiteToken';
|
|
|
|
export default () => {
|
|
const { token } = useSiteToken();
|
|
return (
|
|
<Global
|
|
styles={css`
|
|
#nprogress {
|
|
.bar {
|
|
background: ${token.colorPrimary};
|
|
}
|
|
|
|
.peg {
|
|
box-shadow: 0 0 10px ${token.colorPrimary}, 0 0 5px ${token.colorPrimary};
|
|
}
|
|
|
|
.spinner-icon {
|
|
border-top-color: ${token.colorPrimary};
|
|
border-left-color: ${token.colorPrimary};
|
|
}
|
|
}
|
|
`}
|
|
/>
|
|
);
|
|
};
|
|
|