Skip to content

Commit 8cd103b

Browse files
committed
styles: make font-weight better
1 parent 3f8c28e commit 8cd103b

File tree

3 files changed

+5
-5
lines changed

3 files changed

+5
-5
lines changed

src/App.jsx

-1
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,6 @@ import { RouterProvider } from "react-router-dom"
22
import router from './router/router';
33
import "./App.css"
44

5-
65
export default function App() {
76
return (
87
<RouterProvider router={router} />

src/pages/Overview.module.css

+4-3
Original file line numberDiff line numberDiff line change
@@ -68,7 +68,7 @@
6868
margin-bottom: 10px;
6969
}
7070
.spending-wrap__header-amount-box h6 {
71-
font-weight: bold;
71+
font-weight: 600;
7272
}
7373
.spending-wrap__header-amount-box h6 span {
7474
font-size: 0.7rem;
@@ -95,8 +95,9 @@
9595
line-height: 25px;
9696
}
9797
.overlay h1 {
98-
font-weight: bolder;
98+
font-weight: 600;
9999
font-size: 1.3rem;
100+
margin-bottom: 5px;
100101
}
101102
.overlay h3 {
102103
text-transform: capitalize;
@@ -142,7 +143,7 @@
142143
background-color: lightblue;
143144
}
144145
.total-income-percent-item span {
145-
font-weight: bolder;
146+
font-weight: 600;
146147
}
147148
.calendar-btn {
148149
background-color: transparent;

src/router/router.jsx

+1-1
Original file line numberDiff line numberDiff line change
@@ -28,7 +28,7 @@ const router = createBrowserRouter([
2828
children: [
2929
{
3030
index: true,
31-
element: <Navigate to="/overview" replace />
31+
element: <Navigate to="/overview" />
3232
}
3333
,{
3434
path: OverviewPath,

0 commit comments

Comments
 (0)