Skip to content
Open
Changes from all commits
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
16 changes: 8 additions & 8 deletions src/components/popup/details/vendors/vendors.less
Original file line number Diff line number Diff line change
Expand Up @@ -73,20 +73,20 @@ div.vendors {
text-align: center;
min-width: 60px;

@media @smartphone {
min-width: 65px;
span:first-child {
Copy link

@skoklowski skoklowski Jun 1, 2020

Choose a reason for hiding this comment

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

I think that real problem is that is not allowed to put span tag directly inside tr. Only td and th is allowed there. We should fix this issue instead doing hacks in CSS because such HTML is invalid so we never know when it will stop working in some future browsers version.

display: inline-block;
width: 100%;
}

& > th {
span:first-child {
display: inline-block;
width: 100%;
}
}

& > th {
span:first-child {
display: inline-block;
width: 100%;
}
}
@media @smartphone {
min-width: 65px;
}
}
table {
Expand Down