Skip to content

Commit

Permalink
Merge pull request #16 from suraneti/feature/styled-component
Browse files Browse the repository at this point in the history
Fixed libra icon is blur and update components style.
  • Loading branch information
totiz authored Nov 13, 2019
2 parents 08087bd + d15f9fb commit 4789a11
Show file tree
Hide file tree
Showing 7 changed files with 12 additions and 5 deletions.
Binary file modified src/assets/img/libra/icon-libra.png
100644 → 100755
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file modified src/assets/img/libra/[email protected]
100644 → 100755
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file modified src/assets/img/libra/[email protected]
100644 → 100755
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file modified src/assets/img/logo.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
2 changes: 1 addition & 1 deletion src/components/Bill.vue
Original file line number Diff line number Diff line change
Expand Up @@ -45,7 +45,7 @@
Total
</div>
<div class="column total">
<img :src="require('@/assets/img/libra/icon-libra.png')">
<img :src="require('@/assets/img/libra/icon-libra@3x.png')" style="width: 25px; height: 25px;">
<span>{{ total | numberWithCommas }}</span>
</div>
</div>
Expand Down
2 changes: 1 addition & 1 deletion src/components/ItemList.vue
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,7 @@
<img :src="require(`../assets/img/${item.image}`)">
</div>
<div class="price">
<img :src="require('@/assets/img/libra/icon-libra.png')">
<img :src="require('@/assets/img/libra/icon-libra@3x.png')">
<span>{{ item.price | numberWithCommas }}</span>
</div>
</div>
Expand Down
13 changes: 10 additions & 3 deletions src/components/Sidebar.vue
Original file line number Diff line number Diff line change
Expand Up @@ -73,30 +73,35 @@ export default {
<style lang="scss" scoped>
.sidebar-ctn {
width: 100%;
padding: 20px;
padding: 20px 10px;
height: 100vh;
box-shadow: 2px 2px 14px 0 rgba(0, 0, 0, 0.5);
background-color: #ffffff;
text-align: center;
position: relative;
}
.logo {
width: 150px;
}
.libra-logo {
width: 120px;
float: right;
margin-bottom: 10px;
}
.divider {
width: 100%;
height: 1px;
float: left;
background-color: #dedede;
}
.mg-bt-40px {
margin-bottom: 20px;
}
.menu-item {
cursor: pointer;
float: left;
Expand All @@ -113,22 +118,24 @@ export default {
margin-right: 10px;
}
}
.menu-item:hover {
opacity: 0.5;
}
.is-active {
border-bottom: solid 5px #512da8;
padding-right: 20px;
}
.footer {
position: absolute;
bottom: 0;
left: 0;
right: 0;
padding: 0;
text-align: center;
margin-bottom: 15px;
padding: 0 5px;
padding: 15px 5px;
.kulap {
img {
Expand Down

0 comments on commit 4789a11

Please sign in to comment.