diff --git a/src/assets/icons/download.svg b/src/assets/icons/download.svg index f8078ae..f3d2676 100644 --- a/src/assets/icons/download.svg +++ b/src/assets/icons/download.svg @@ -1,4 +1,3 @@ - - - + + diff --git a/src/assets/icons/downloadBtn.svg b/src/assets/icons/downloadBtn.svg new file mode 100644 index 0000000..519f378 --- /dev/null +++ b/src/assets/icons/downloadBtn.svg @@ -0,0 +1,4 @@ + + + + diff --git a/src/assets/images/wardrobe/checked.png b/src/assets/images/wardrobe/checked.png new file mode 100644 index 0000000..d9fd543 Binary files /dev/null and b/src/assets/images/wardrobe/checked.png differ diff --git a/src/assets/images/wardrobe/select.png b/src/assets/images/wardrobe/select.png new file mode 100644 index 0000000..cc7c81a Binary files /dev/null and b/src/assets/images/wardrobe/select.png differ diff --git a/src/components/CommodityItem.vue b/src/components/CommodityItem.vue index 97e58d8..e53c93a 100644 --- a/src/components/CommodityItem.vue +++ b/src/components/CommodityItem.vue @@ -1,90 +1,100 @@
- -
-
-
- {{ props.name }} -
-
- {{ props.price }} -
-
-
-
- -
-
-
-
+
+ +
+
+
+ {{ props.name }} +
+
+ {{ props.price }} +
+
+
+
+ +
+
+
+
\ No newline at end of file +.commodity-item { + width: var(--commodity-width, 100%); + &.is-download{ + img{ + cursor: initial; + } + } + > img { + width: 100%; + cursor: pointer; + height: var(--commodity-height, auto); + margin-bottom: var(--commodity-marginBottom, 1rem); + } + > .detail { + display: flex; + justify-content: space-between; + align-items: center; + > .text { + color: #232323; + > .name { + font-family: 'KaiseiOpti-Regular'; + font-weight: 400; + font-size: var(--commodity-name-fontSize, 1.6rem); + line-height: var(--commodity-name-lineHeight, 2.3rem); + margin-bottom: var(--commodity-name-marginBottom, 0rem); + } + > .price { + font-family: 'KaiseiOpti-Regular'; + font-weight: 400; + font-size: var(--commodity-price-fontSize, 1.4rem); + line-height: var(--commodity-price-lineHeight, 2.3rem); + &.is-download { + color: #979797; + } + } + } + } + .btn { + cursor: pointer; + } +} + diff --git a/src/views/wardrobe/Assets.vue b/src/views/wardrobe/Assets.vue index e6f6707..eb1467f 100644 --- a/src/views/wardrobe/Assets.vue +++ b/src/views/wardrobe/Assets.vue @@ -49,28 +49,52 @@ -
+
- {{ selectedCount }} Selected - - +
+ + {{ selectedCount }} Selected +
+ +
- + Download Selected
-
-
- +
+
+ +
+
@@ -90,7 +114,7 @@