diff --git a/package.json b/package.json
index ba63f08f..f789a566 100644
--- a/package.json
+++ b/package.json
@@ -1,6 +1,6 @@
{
"name": "@soramitsu/soramitsu-js-ui",
- "version": "0.2.1",
+ "version": "0.2.2",
"private": false,
"publishConfig": {
"registry": "https://nexus.iroha.tech/repository/npm-soramitsu-private/"
diff --git a/src/assets/icons/create.svg b/src/assets/icons/create.svg
new file mode 100644
index 00000000..0ef0864d
--- /dev/null
+++ b/src/assets/icons/create.svg
@@ -0,0 +1,5 @@
+
diff --git a/src/assets/icons/file-upload.svg b/src/assets/icons/file-upload.svg
new file mode 100644
index 00000000..60eac80c
--- /dev/null
+++ b/src/assets/icons/file-upload.svg
@@ -0,0 +1,3 @@
+
diff --git a/src/assets/icons/refresh-red.svg b/src/assets/icons/refresh-red.svg
new file mode 100644
index 00000000..d4db0de1
--- /dev/null
+++ b/src/assets/icons/refresh-red.svg
@@ -0,0 +1,12 @@
+
diff --git a/src/assets/icons/refresh.svg b/src/assets/icons/refresh.svg
index d4db0de1..3c460cf8 100644
--- a/src/assets/icons/refresh.svg
+++ b/src/assets/icons/refresh.svg
@@ -1,12 +1,12 @@
diff --git a/src/components/Button/SButton.vue b/src/components/Button/SButton.vue
index e03446f6..7f0e4a64 100644
--- a/src/components/Button/SButton.vue
+++ b/src/components/Button/SButton.vue
@@ -218,24 +218,16 @@ export default class SButton extends Vue {
}
background-color: $color-neutral-placeholder;
border-color: $color-neutral-placeholder;
- &:hover, &:active, &:focus, &:disabled { // TODO: ux designers will create this state
- background-color: $color-neutral-placeholder;
- border-color: $color-neutral-placeholder;
- }
- &:disabled:hover {
- background-color: $color-neutral-placeholder;
- border-color: $color-neutral-placeholder;
+ &:hover, &:active, &:focus, &:disabled, &:disabled:hover {
+ background-color: $color-neutral-hover;
+ border-color: $color-neutral-hover;
}
&.alternative {
background-color: $color-basic-white;
border-color: $color-neutral-border;
- &:hover, &:active, &:focus, &:disabled { // TODO: ux designers will create this state
- background-color: $color-basic-white;
- border-color: $color-neutral-border;
- }
- &:disabled:hover {
- background-color: $color-basic-white;
- border-color: $color-neutral-border;
+ &:hover, &:active, &:focus, &:disabled, &:disabled:hover {
+ background-color: $color-neutral-placeholder;
+ border-color: $color-neutral-placeholder;
}
}
}
diff --git a/src/components/Card/SCard.vue b/src/components/Card/SCard.vue
index c7cb4451..6ecbbc98 100644
--- a/src/components/Card/SCard.vue
+++ b/src/components/Card/SCard.vue
@@ -48,6 +48,7 @@ export default class SCard extends Vue {
.el-card__header {
border-bottom-color: $color-basic-white;
padding-bottom: 0;
+ text-align: left;
}
.el-card__body {
padding: 18px 20px;
diff --git a/src/components/Collapse/SCollapseItem.vue b/src/components/Collapse/SCollapseItem.vue
index 38a43d0d..c55719ad 100644
--- a/src/components/Collapse/SCollapseItem.vue
+++ b/src/components/Collapse/SCollapseItem.vue
@@ -33,7 +33,7 @@ export default class SCollapseItem extends Vue {
diff --git a/src/components/Input/SInput.vue b/src/components/Input/SInput.vue
index d9613bca..8c6d2e0c 100644
--- a/src/components/Input/SInput.vue
+++ b/src/components/Input/SInput.vue
@@ -3,16 +3,16 @@
class="s-input"
:class="computedClasses"
>
- {{ placeholder }}
+ {{ placeholder }}
+
+
+
+
diff --git a/src/components/Layout/Footer/SFooter.vue b/src/components/Layout/Footer/SFooter.vue
index 0c07ac20..84adf789 100644
--- a/src/components/Layout/Footer/SFooter.vue
+++ b/src/components/Layout/Footer/SFooter.vue
@@ -10,13 +10,12 @@ import { Vue, Component, Prop } from 'vue-property-decorator'
@Component
export default class SFooter extends Vue {
/**
- * Height of a component. Default value is `"56px"`.
+ * Height of the footer component. Default value is `"56px"`.
*
* In this context, the value of the height property must match the valid value of the
* **CSS height** property. For instance, `"auto"`, `"200px"`, `"100vh"` etc.
*/
@Prop({ default: '56px', type: String }) readonly height!: string
- // TODO: 56px is set because of big size right?
}
diff --git a/src/components/Layout/Header/SHeader.vue b/src/components/Layout/Header/SHeader.vue
index 263efafc..2715d822 100644
--- a/src/components/Layout/Header/SHeader.vue
+++ b/src/components/Layout/Header/SHeader.vue
@@ -10,13 +10,12 @@ import { Vue, Component, Prop } from 'vue-property-decorator'
@Component
export default class SHeader extends Vue {
/**
- * Height of a component. Default value is `"56px"`.
+ * Height of the header component. Default value is `"56px"`.
*
* In this context, the value of the height property must match the valid value of the
* **CSS height** property. For instance, `"auto"`, `"200px"`, `"100vh"` etc.
*/
@Prop({ default: '56px', type: String }) readonly height!: string
- // TODO: 56px is set because of big size right?
}
diff --git a/src/components/ScrollSections/SScrollSectionItem.vue b/src/components/ScrollSections/SScrollSectionItem.vue
index fee3d230..43406972 100644
--- a/src/components/ScrollSections/SScrollSectionItem.vue
+++ b/src/components/ScrollSections/SScrollSectionItem.vue
@@ -38,7 +38,7 @@ export default class SScrollSectionItem extends Vue {
margin-top: 10px;
}
&:last-child {
- margin-bottom: 120%;
+ margin-bottom: 10px;
}
.title {
font-weight: bold;
diff --git a/src/components/ScrollSections/SScrollSections.vue b/src/components/ScrollSections/SScrollSections.vue
index 0e293651..18ec3e78 100644
--- a/src/components/ScrollSections/SScrollSections.vue
+++ b/src/components/ScrollSections/SScrollSections.vue
@@ -1,6 +1,6 @@
-