Skip to content

Commit 563af62

Browse files
committed
brand text
1 parent f4014ac commit 563af62

File tree

2 files changed

+9
-2
lines changed

2 files changed

+9
-2
lines changed

src/App.css

Lines changed: 7 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -50,3 +50,10 @@
5050
transform: rotate(360deg);
5151
}
5252
}
53+
54+
@import url("https://fonts.googleapis.com/css2?family=Roboto:wght@500&display=swap");
55+
56+
.brand {
57+
font-family: "Roboto", sans-serif;
58+
padding-top: 0.2rem !important;
59+
}

src/App.js

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -12,7 +12,7 @@ import Card, { checkCardsArr } from './Shared/Card'
1212

1313
const { loadData, postData, updDataServLogin } = DataService()
1414

15-
const testText = "Notes App"
15+
const brandText = "Notes"
1616

1717
var cardCount = 0
1818

@@ -203,7 +203,7 @@ function App() {
203203
<nav className="d-flex container px-0 flex-wrap-reverse justify-content-around">
204204
<div className="text-center d-flex p-1 align-items-center justify-content-center flex-wrap">
205205
<img src={logo} className="App-logo" alt="logo" />
206-
<h1 className="h2 m-0 text-dark pr-3">{testText}</h1>
206+
<h1 className="h2 m-0 text-dark pr-3 brand">{brandText}</h1>
207207
</div>
208208
<div className="text-center d-flex p-0 align-items-center flex-wrap ml-auto">
209209
{logged &&

0 commit comments

Comments
 (0)