15 changed files with 278 additions and 10 deletions
Unified View
Diff Options
-
5Shopify-Cart/src/main/java/com/shopify/cart/controller/ProductController.java
-
12Shopify-Cart/src/main/java/com/shopify/cart/model/Product.java
-
4Shopify-Cart/src/main/java/com/shopify/cart/repository/ProductRepository.java
-
2Shopify-Cart/src/main/resources/application.properties
-
2ShopifyUI/proxy.conf.json
-
51ShopifyUI/src/app/components/cart/cart.component.css
-
55ShopifyUI/src/app/components/cart/cart.component.html
-
54ShopifyUI/src/app/components/cart/cart.component.ts
-
36ShopifyUI/src/app/components/home/home.component.css
-
39ShopifyUI/src/app/components/home/home.component.html
-
10ShopifyUI/src/app/components/home/home.component.ts
-
2ShopifyUI/src/app/components/products/products.component.ts
-
2ShopifyUI/src/app/model/cart.model.ts
-
9ShopifyUI/src/app/service/cart.service.ts
-
5ShopifyUI/src/app/service/product.service.ts
@ -1,6 +1,6 @@ |
|||||
{ |
{ |
||||
"/api": { |
"/api": { |
||||
"target": "http://10.3.117.21:8002", |
|
||||
|
"target": "http://10.3.117.22:8002", |
||||
"secure": false |
"secure": false |
||||
} |
} |
||||
} |
} |
||||
@ -0,0 +1,51 @@ |
|||||
|
.cart-heading { |
||||
|
color: #1B4F72; |
||||
|
} |
||||
|
|
||||
|
.cartList { |
||||
|
padding-left: 4em; |
||||
|
padding-right: 6em; |
||||
|
} |
||||
|
|
||||
|
.cartList>div { |
||||
|
border-bottom: 1px solid lightgray; |
||||
|
} |
||||
|
.cart-content h1,p{ |
||||
|
color: #1B4F72; |
||||
|
float: right; |
||||
|
} |
||||
|
|
||||
|
.QuantityBtn button { |
||||
|
border: 1px solid transparent; |
||||
|
padding: 12px 14px; |
||||
|
border-radius: 20px; |
||||
|
color: white; |
||||
|
float: right; |
||||
|
background-color: #1B4F72 |
||||
|
} |
||||
|
|
||||
|
.oneBtn { |
||||
|
opacity: 0.5; |
||||
|
} |
||||
|
|
||||
|
.QuantityInput { |
||||
|
transform: translate(10px,0); |
||||
|
} |
||||
|
.QuantityInput input { |
||||
|
height: 45px; |
||||
|
text-align: center; |
||||
|
} |
||||
|
|
||||
|
.payBtn button { |
||||
|
border: 1px solid transparent; |
||||
|
padding: 12px 14px; |
||||
|
border-radius: 20px; |
||||
|
color: white; |
||||
|
background-color: #2E86C1; |
||||
|
width: 95%; |
||||
|
} |
||||
|
|
||||
|
.cart-content h3 { |
||||
|
color: #1B4F72; |
||||
|
padding-left: 50px; |
||||
|
} |
||||
Write
Preview
Loading…
Cancel
Save
Reference in new issue