Skip to content

Commit

Permalink
Merge pull request #3056 from metabrainz/LB-1693
Browse files Browse the repository at this point in the history
LB-1693: Prevent overflow on entity pages titles
  • Loading branch information
MonkeyDo authored Dec 5, 2024
2 parents e39eb7e + cd2eebb commit 72192a7
Show file tree
Hide file tree
Showing 2 changed files with 7 additions and 3 deletions.
8 changes: 6 additions & 2 deletions frontend/css/entity-pages.less
Original file line number Diff line number Diff line change
Expand Up @@ -27,8 +27,12 @@
flex-grow: 2;
display: flex;
flex-direction: column;
min-width: 200px;
max-height: 410px;
min-width: 15em;
max-height: 29em;
overflow: hidden;
> *:first-child {
line-height: 1em;
}
.wikipedia-extract {
margin-top: 2em;
overflow: hidden;
Expand Down
2 changes: 1 addition & 1 deletion frontend/js/src/album/AlbumPage.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -290,7 +290,7 @@ export default function AlbumPage(): JSX.Element {
</div>
<div className="artist-info">
<h1>{album?.name}</h1>
<div className="details h3">
<div className="details h4">
<div>
{artist.artists.map((ar) => {
return (
Expand Down

0 comments on commit 72192a7

Please sign in to comment.