-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Showing
10 changed files
with
122 additions
and
78 deletions.
There are no files selected for viewing
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,8 +1,8 @@ | ||
import { render, screen } from '@testing-library/react'; | ||
import App from './App'; | ||
// import { render, screen } from '@testing-library/react'; | ||
// import App from './App'; | ||
|
||
test('renders learn react link', () => { | ||
render(<App />); | ||
const linkElement = screen.getByText(/learn react/i); | ||
expect(linkElement).toBeInTheDocument(); | ||
}); | ||
// test('renders learn react link', () => { | ||
// render(<App />); | ||
// const linkElement = screen.getByText(/learn react/i); | ||
// expect(linkElement).toBeInTheDocument(); | ||
// }); |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,5 +1,14 @@ | ||
.sidebar__link-wrapper{ | ||
display:flex; | ||
.sidebar__link-wrapper { | ||
height: calc(100vh - 300px); | ||
min-height: 200px; | ||
overflow-y: auto; | ||
display: flex; | ||
flex-flow: column; | ||
gap: 20px; | ||
} | ||
} | ||
|
||
.sidebar__bottom { | ||
bottom: 0; | ||
text-align: center; | ||
} | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,35 +1,35 @@ | ||
html{ | ||
font-size:16px; | ||
--main-color: #ED234B; | ||
html { | ||
font-size: 16px; | ||
--main-color: #ed234b; | ||
--main-black: #171717; | ||
} | ||
|
||
body { | ||
margin: 0; | ||
} | ||
|
||
ul{ | ||
margin:0; | ||
ul { | ||
margin: 0; | ||
padding: 0; | ||
} | ||
|
||
li{ | ||
li { | ||
list-style: none; | ||
} | ||
|
||
a{ | ||
a { | ||
text-decoration: none; | ||
color: black; | ||
} | ||
|
||
@media (max-width: 768px) { | ||
html{ | ||
html { | ||
font-size: 14px; | ||
} | ||
} | ||
|
||
@media(max-width: 480px){ | ||
html{ | ||
@media (max-width: 480px) { | ||
html { | ||
font-size: 12px; | ||
} | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters