Skip to content

Commit

Permalink
small tweaks
Browse files Browse the repository at this point in the history
  • Loading branch information
programmerstevie committed Apr 25, 2024
1 parent 80623b7 commit 191dc8b
Show file tree
Hide file tree
Showing 4 changed files with 9 additions and 7 deletions.
1 change: 1 addition & 0 deletions src/global.css
Original file line number Diff line number Diff line change
Expand Up @@ -34,6 +34,7 @@ button:active {

body {
font-family: 'Roboto';
background-color: var(--color-pf-white);
}

:root {
Expand Down
4 changes: 2 additions & 2 deletions src/lib/components/sections/AboutMe/AboutMe.svelte
Original file line number Diff line number Diff line change
Expand Up @@ -23,8 +23,8 @@
</aside>

<div class="text-side">
<header>
<h2 id="ABOUT">About Me <img src={boxCodeIcon} alt="" /></h2>
<header id="ABOUT">
<h2>About Me <img src={boxCodeIcon} alt="" /></h2>
</header>
<ul class="description">
<li>
Expand Down
4 changes: 2 additions & 2 deletions src/lib/components/sections/Landing/Landing.svelte
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@
</script>

<div class="main-landing">
<header>
<header id="">
<Container>
<NavBar />
</Container>
Expand All @@ -16,7 +16,7 @@
<div class="landing-content">
<div class="hero-card">
<section class="hero-text-side">
<h1 id="">Hello I'm Stevie.</h1>
<h1>Hello I'm Stevie.</h1>

<p class="dev-text">
I am a <span class="dev-job-title">Front End Developer</span>&period;
Expand Down
7 changes: 4 additions & 3 deletions src/lib/components/sections/Portfolio/Portfolio.svelte
Original file line number Diff line number Diff line change
Expand Up @@ -25,8 +25,8 @@

<div class="main-box">
<Container>
<header>
<h2 id="PORTFOLIO" class="pf-header">My Portfolio <img src={sparkle} alt="" /></h2>
<header id="PORTFOLIO">
<h2 class="pf-header">My Portfolio <img src={sparkle} alt="" /></h2>
</header>
<section class="entries">
<ul>
Expand Down Expand Up @@ -65,7 +65,8 @@
margin-top: 95px;
ul {
li {
padding-bottom: 46px;
li:not(:last-child) {
margin-bottom: 64px;
}
}
Expand Down

0 comments on commit 191dc8b

Please sign in to comment.