Skip to content

Commit

Permalink
Merge pull request #62 from manuel12/move-heading-left
Browse files Browse the repository at this point in the history
Move heading left
  • Loading branch information
surajondev authored Nov 17, 2023
2 parents ac4bcfa + 3c63573 commit c6a0f02
Show file tree
Hide file tree
Showing 2 changed files with 9 additions and 5 deletions.
13 changes: 8 additions & 5 deletions src/Header.js
Original file line number Diff line number Diff line change
@@ -1,14 +1,17 @@
import React from "react";
import "./index.css";
import {TiWeatherSunny} from 'react-icons/ti'
import { TiWeatherSunny } from "react-icons/ti";

function Header() {
return (
<header>
<div className="container ui block header">
<h1 className="title">
GET WEATHER <span className="logo"><TiWeatherSunny/></span>
</h1>
<div className='container ui block header'>
<h1 className='title'>
GET WEATHER{" "}
<span className='logo'>
<TiWeatherSunny />
</span>
</h1>
</div>
</header>
);
Expand Down
1 change: 1 addition & 0 deletions src/index.css
Original file line number Diff line number Diff line change
Expand Up @@ -48,6 +48,7 @@ a:hover {

/* TYPOGRAPHY */
.title {
text-align: left;
font-size: 4rem;
font-weight: 50px;
padding-left: 0.6rem;
Expand Down

0 comments on commit c6a0f02

Please sign in to comment.