Skip to content

Commit

Permalink
improve ui
Browse files Browse the repository at this point in the history
  • Loading branch information
salahlalami committed Sep 29, 2024
1 parent d53b3c9 commit 49f15f3
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 2 deletions.
1 change: 0 additions & 1 deletion frontend/src/apps/Header/UpgradeButton.jsx
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,6 @@ export default function UpgradeButton() {
return (
<Badge count={1} size="small">
<Button
type="primary"
style={{
float: 'right',
marginTop: '5px',
Expand Down
5 changes: 4 additions & 1 deletion frontend/src/components/PageLoader/index.jsx
Original file line number Diff line number Diff line change
@@ -1,10 +1,13 @@
import React from 'react';
import { Spin } from 'antd';

import { LoadingOutlined } from '@ant-design/icons';

const PageLoader = () => {
const antIcon = <LoadingOutlined style={{ fontSize: 64 }} spin />;
return (
<div className="centerAbsolute">
<Spin size="large" />
<Spin indicator={antIcon}></Spin>
</div>
);
};
Expand Down

0 comments on commit 49f15f3

Please sign in to comment.