Skip to content

Commit 315cefe

Browse files
committed
bit fix
1 parent 10702ee commit 315cefe

File tree

3 files changed

+5
-5
lines changed

3 files changed

+5
-5
lines changed

src/App.js

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -219,16 +219,16 @@ function App() {
219219
<Context.Provider value={{ removeCard, changeCardState, setEditCard, unsetEditCard, editCardContent, editCardId }}>
220220
<div className="App pb-3 mb-3">
221221
<header className="p-1">
222-
<nav className="d-flex container px-0 flex-wrap-reverse">
222+
<nav className="d-flex container px-0 flex-wrap-reverse justify-content-around">
223223
<div className="text-center d-flex p-1 align-items-center justify-content-center flex-wrap">
224224
<img src={logo} className="App-logo" alt="logo" />
225-
<h1 className="h2 m-0 text-dark">{testText}</h1>
225+
<h1 className="h2 m-0 text-dark pr-3">{testText}</h1>
226226
</div>
227227
<div className="text-center d-flex p-0 align-items-center flex-wrap ml-auto">
228228
{logged &&
229229
<button className="btn btn-light m-1" onClick={loadDataFromServer}>
230230
<i className="bi bi-arrow-clockwise px-1"></i>
231-
<span className='d-lg-inline d-none'>Update data</span>
231+
<span className='d-xl-inline d-none'>Update data</span>
232232
</button>
233233
}
234234
<button className="btn btn-light m-1" onClick={() => setOpenLogin(true)}>

src/Cards/ModalCardEdit.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -75,7 +75,7 @@ function ModalCardEdit(props) {
7575
<h1 className="mb-2">Id: {card.id}</h1>
7676
<h5 className="mb-2">Completed:
7777
<span
78-
className={`px-2 py-1 m-1 d-inline-block text-center badge bage-${btcolor}`}
78+
className={`p-1 m-1 d-inline-block text-center badge badge-${btcolor}`}
7979
style={{ width: "3em" }}
8080
>
8181
{String(card.completed)}

src/Services/LoginService.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
export default function DataService() {
2-
2+
// ПОКА ЭТО ТУПО ЗАГЛУШКА
33
var user = null
44

55
////////////////////////////////////////////////////////////

0 commit comments

Comments
 (0)