Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
111 changes: 0 additions & 111 deletions package-lock.json

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

5 changes: 4 additions & 1 deletion src/Components/Item/Item.css
Original file line number Diff line number Diff line change
@@ -1,5 +1,8 @@
.item{
width: 350px;
width: 300px !important;
}
.item img{
width: 100% !important;
}
.item p{
margin: 6px 0px;
Expand Down
11 changes: 7 additions & 4 deletions src/Pages/CSS/ShopCategory.css
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@

.shopcategory-indexSort {
display: flex;
margin: 0px 170px;
margin: 59px;
justify-content: space-between;
align-items: center;
}
Expand All @@ -15,7 +15,7 @@
font-family: inherit;
text-align: center;
padding: 10px 35px 10px 20px;
border-radius: 40px;
border-radius: 9px;
border: 1px solid #888;
-moz-appearance: none;
-webkit-appearance: none;
Expand All @@ -42,16 +42,19 @@
.shopcategory-sort option {
text-align: left;
}
.shopcategory-sort,select {
margin: 5px;
}

.shopcategory-indexSort p span {
font-weight: 600;
}

.shopcategory-products {
margin: 20px 70px;
margin: 20px 53px;
display: grid;
grid-template-columns: 1fr 1fr 1fr 1fr;
row-gap: 80px;
gap: 18px;
}

.shopcategory-loadmore {
Expand Down
21 changes: 11 additions & 10 deletions src/index.css
Original file line number Diff line number Diff line change
@@ -1,20 +1,21 @@
@import url("https://fonts.googleapis.com/css?family=Montserrat:400,800");
*{
* {
margin: 0;
}

body {
margin: 0;
font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', 'Roboto', 'Oxygen',
'Ubuntu', 'Cantarell', 'Fira Sans', 'Droid Sans', 'Helvetica Neue',
font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", "Roboto", "Oxygen",
"Ubuntu", "Cantarell", "Fira Sans", "Droid Sans", "Helvetica Neue",
sans-serif;
-webkit-font-smoothing: antialiased;
-moz-osx-font-smoothing: grayscale;
font-family: 'poppins';
font-family: "poppins";
overflow-x: hidden;
}

code {
font-family: source-code-pro, Menlo, Monaco, Consolas, 'Courier New',
font-family: source-code-pro, Menlo, Monaco, Consolas, "Courier New",
monospace;
}
/* Custom scrollbar for WebKit browsers */
Expand All @@ -23,25 +24,25 @@ code {
}

::-webkit-scrollbar-thumb {
background-color: #6970cc !important;
background-color: #6970cc !important;
border-radius: 6px; /* Rounded corners of the thumb */
}

::-webkit-scrollbar-track {
background-color: #bacfcf !important;
background-color: #bacfcf !important;
}

::-webkit-scrollbar-thumb:hover {
background-color: #6a9be0 !important;
background-color: #6a9be0 !important;
}

/* Custom scrollbar for Firefox */
body {
scrollbar-width: thin !important; /* Firefox */
scrollbar-color: #6970cc !important;
scrollbar-color: #6970cc !important;
}

body:hover {
scrollbar-width: thin !important; /* Firefox */
scrollbar-color: #283f33 #330000 !important;
scrollbar-color: #283f33 #330000 !important;
}