Skip to content

Commit

Permalink
Merge pull request #466 from Durgeshwar-AI/main
Browse files Browse the repository at this point in the history
Corrected the x oveflow
  • Loading branch information
samyakmaitre authored Oct 30, 2024
2 parents 5abd6a7 + 6dceb0c commit 5f8779f
Show file tree
Hide file tree
Showing 3 changed files with 10 additions and 1 deletion.
9 changes: 8 additions & 1 deletion src/App.css
Original file line number Diff line number Diff line change
Expand Up @@ -3,6 +3,10 @@
@import "slick-carousel/slick/slick.css";
@import "slick-carousel/slick/slick-theme.css";

*{
box-sizing: border-box;
}

.App {
text-align: center;
margin: 0px;
Expand Down Expand Up @@ -123,5 +127,8 @@ header nav ul li {
background-color: #ff0000;
}


.slider-container{
width: 100%;
overflow: hidden;
}

1 change: 1 addition & 0 deletions src/assets/styles/NavBar.css
Original file line number Diff line number Diff line change
Expand Up @@ -11,6 +11,7 @@
top: 0;
position: sticky;
width: 100%;
overflow: hidden;
z-index: 100;
font-family: "Roboto", sans-serif;
}
Expand Down
1 change: 1 addition & 0 deletions src/index.css
Original file line number Diff line number Diff line change
Expand Up @@ -16,6 +16,7 @@ body {
-webkit-font-smoothing: antialiased;
-moz-osx-font-smoothing: grayscale;
-x: hidden;
overflow-x: hidden;
}

code {
Expand Down

0 comments on commit 5f8779f

Please sign in to comment.