Skip to content

Commit

Permalink
Fix stylelint errors
Browse files Browse the repository at this point in the history
  • Loading branch information
tsheporamantso committed Mar 20, 2024
1 parent 7ef0fc5 commit 5bff21f
Show file tree
Hide file tree
Showing 8 changed files with 5 additions and 12 deletions.
1 change: 0 additions & 1 deletion src/Components/about/about.css
Original file line number Diff line number Diff line change
Expand Up @@ -91,7 +91,6 @@
}
}


/***
*! ===================== MEDIA QUERIES (SMALL DEVICES) ========================
***/
Expand Down
1 change: 0 additions & 1 deletion src/Components/contact/contact.css
Original file line number Diff line number Diff line change
Expand Up @@ -69,7 +69,6 @@ textarea {
}
}


/***
*! ===================== MEDIA QUERIES (SMALL DEVICES) ========================
***/
Expand Down
1 change: 0 additions & 1 deletion src/Components/experience/experience.css
Original file line number Diff line number Diff line change
Expand Up @@ -60,7 +60,6 @@
}
}


/***
*! ===================== MEDIA QUERIES (SMALL DEVICES) ========================
***/
Expand Down
1 change: 0 additions & 1 deletion src/Components/header/header.css
Original file line number Diff line number Diff line change
Expand Up @@ -83,7 +83,6 @@ header {
}
}


/***
*! ===================== MEDIA QUERIES (SMALL DEVICES) ========================
***/
Expand Down
1 change: 0 additions & 1 deletion src/Components/nav/nav.css
Original file line number Diff line number Diff line change
@@ -1,7 +1,6 @@
nav {
background: rgba(0, 0, 0, 0.3);
width: max-content;
display: block;
padding: 0.7rem 1.7rem;
z-index: 2;
position: fixed;
Expand Down
3 changes: 1 addition & 2 deletions src/Components/services/services.css
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@
background: var(--color-bg-variant);
border-radius: 0 0 2rem 2rem;
border: 1px solid var(--color-primary);
height: fit-content;
height: max-content;
transition: var(--transition);
}

Expand Down Expand Up @@ -65,7 +65,6 @@
}
}


/***
*! ===================== MEDIA QUERIES (SMALL DEVICES) ========================
***/
Expand Down
1 change: 0 additions & 1 deletion src/Components/testimonials/testimonials.css
Original file line number Diff line number Diff line change
Expand Up @@ -46,7 +46,6 @@
}
}


/***
*! ===================== MEDIA QUERIES (SMALL DEVICES) ========================
***/
Expand Down
8 changes: 4 additions & 4 deletions src/index.css
Original file line number Diff line number Diff line change
Expand Up @@ -8,6 +8,10 @@
text-decoration: none;
}

::-webkit-scrollbar {
display: none;
}

:root {
--color-bg: #1f1f38;
--color-bg-variant: #2c2c6c;
Expand All @@ -25,10 +29,6 @@ html {
scroll-behavior: smooth;
}

::-webkit-scrollbar {
display: none;
}

body {
font-family: "Poppins", sans-serif;
background: var(--color-bg);
Expand Down

0 comments on commit 5bff21f

Please sign in to comment.