Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

ipad-view-order-summary-block #20856

Merged
Changes from 1 commit
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Original file line number Diff line number Diff line change
Expand Up @@ -148,14 +148,14 @@
}

.product-item-name-block {
display: table-cell;
display: block;
Copy link
Contributor

Choose a reason for hiding this comment

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

Hi @dipti2jcommerce. The parent block contain .product-item-inner class that has display: table;, so use display:block instead of display:table-cell in table isn't correct way.

Copy link
Author

@dipti2jcommerce dipti2jcommerce Feb 4, 2019

Choose a reason for hiding this comment

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

Hi @VladimirZaets ,

I have made modification in code for ipad view as per your request and its working fine.please check.

Thanks,
Dipti

padding-right: @indent__xs;
text-align: left;
}

.subtotal {
display: table-cell;
text-align: right;
display: block;
text-align: left;
}

.price {
Expand Down