Skip to content

Commit

Permalink
fixed image size (#92)
Browse files Browse the repository at this point in the history
  • Loading branch information
demetriusfeijoo authored Jan 12, 2024
1 parent 6870040 commit 1fc0ec8
Show file tree
Hide file tree
Showing 2 changed files with 9 additions and 3 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@
class="plugin-add-item-big-button"
@click.prevent="handleClick"
>
<CartListItemImageContainer>
<CartListItemImageContainer class="plugin-add-item-big-button__container">
<SbIcon name="block-image" />
</CartListItemImageContainer>
<span class="plugin-add-item-big-button__label">
Expand Down Expand Up @@ -70,4 +70,9 @@ export default {
font-size: 1.4rem;
font-weight: 500;
}
.plugin-add-item-big-button__container {
height: 80px;
min-width: 106px;
}
</style>
Original file line number Diff line number Diff line change
Expand Up @@ -18,8 +18,9 @@ export default {
overflow: hidden;
align-items: center;
background-color: #eff1f3;
height: 80px;
min-width: 106px;
border: 1px solid #eff1f3;
max-height: 80px;
max-width: 106px;
border-radius: 5px;
}
</style>

1 comment on commit 1fc0ec8

@vercel
Copy link

@vercel vercel bot commented on 1fc0ec8 Jan 12, 2024

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Please sign in to comment.