Fixed: Links and already added icons overflowing on add artist/album search results

Co-Authored-By: Mark McDowall <markus101@users.noreply.github.com>
Signed-off-by: Robin Dadswell <robin@dadswell.email>
This commit is contained in:
Qstick
2020-12-13 01:20:01 -05:00
parent 36685edd49
commit 18a9f69f60
4 changed files with 124 additions and 84 deletions
@@ -34,24 +34,37 @@
.content {
flex: 0 1 100%;
overflow: hidden;
}
.name {
.titleRow {
display: flex;
}
.titleContainer {
display: flex;
align-items: flex-end;
flex: 0 1 auto;
}
.title {
font-weight: 300;
font-size: 36px;
}
.authorName {
font-weight: 300;
font-size: 20px;
}
.year {
margin-left: 10px;
color: $disabledColor;
}
.icons {
display: flex;
align-items: center;
justify-content: space-between;
flex: 1 0 auto;
height: 55px;
}
.mbLink {
composes: link from '~Components/Link/Link.css';
@@ -74,3 +87,10 @@
margin-top: 20px;
text-align: justify;
}
@media only screen and (max-width: $breakpointMedium) {
.titleRow {
justify-content: space-between;
overflow: hidden;
}
}