Skip to content

Commit c008002

Browse files
committed
Nuevo logo
1 parent dae9c3b commit c008002

File tree

3 files changed

+10
-11
lines changed

3 files changed

+10
-11
lines changed

public/images/favicon.png

17.1 KB
Loading

src/App.css

Lines changed: 4 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -44,22 +44,19 @@ body {
4444

4545
h1 {
4646
text-align: center;
47-
margin-block: 2rem;
47+
margin-block: 1rem;
4848
font-size: clamp(2.5rem, calc(2rem + 1.333vw), 3rem);
4949
text-shadow: 2px 2px 3px var(--info-color);
5050
display: flex;
51+
flex-direction: column;
5152
flex-wrap: wrap;
5253
align-items: center;
5354
justify-content: center;
54-
gap: 0.75rem;
55+
row-gap: 0.5rem;
5556

5657
.img {
57-
width: 5rem;
58-
height: 5rem;
59-
border-radius: 50%;
60-
background-color: var(--text-color);
58+
width: 14rem;
6159
padding: 0.5rem;
62-
box-shadow: 2px 2px 3px var(--info-color);
6360

6461
img {
6562
width: 100%;

src/components/header/Header.jsx

Lines changed: 6 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -3,10 +3,12 @@ export const Header = () => {
33
<header>
44
<div className="container">
55
<h1>
6-
<div className="img">
7-
<img src="./images/favicon.png" alt="Logo de HTML-CSS-QUIZ" />
8-
</div>
9-
HTML & CSS QUIZ
6+
<img
7+
className="img"
8+
src="./images/favicon.png"
9+
alt="Logo de HTML-CSS-QUIZ"
10+
/>
11+
HTML - CSS QUIZ
1012
</h1>
1113
</div>
1214
</header>

0 commit comments

Comments
 (0)