Merge pull request #1422 from miikkatu/fix-spacing-in-search-suggestions
Fix spacing in search suggestions
This commit is contained in:
commit
cd9f173722
2 changed files with 10 additions and 4 deletions
|
@ -26,6 +26,7 @@ The format is based on [Keep a Changelog](http://keepachangelog.com/).
|
|||
* Fix download percentage indicator overlay ([#1271](https://github.com/lbryio/lbry-app/issues/1271))
|
||||
* Fix alternate row shading for transactions on dark theme ([#1355](https://github.com/lbryio/lbry-app/issues/#1355))
|
||||
* Fix Description box on Publish (dark theme) ([#1356](https://github.com/lbryio/lbry-app/issues/#1356))
|
||||
* Fix spacing in search suggestions ([#1422])(https://github.com/lbryio/lbry-app/pull/1422))
|
||||
|
||||
|
||||
## [0.21.3] - 2018-04-23
|
||||
|
|
|
@ -51,24 +51,29 @@
|
|||
background-color: var(--search-bg-color);
|
||||
cursor: pointer;
|
||||
display: flex;
|
||||
align-items: center;
|
||||
text-overflow: ellipsis;
|
||||
flex-direction: row;
|
||||
justify-items: flex-start;
|
||||
font-family: 'metropolis-medium';
|
||||
|
||||
&:not(:first-of-type) {
|
||||
border-top: 1px solid var(--search-item-border-color);
|
||||
}
|
||||
|
||||
.icon {
|
||||
flex-shrink: 0;
|
||||
}
|
||||
}
|
||||
|
||||
.wunderbar__suggestion-label {
|
||||
overflow: hidden;
|
||||
padding-left: $spacing-vertical;
|
||||
text-overflow: ellipsis;
|
||||
white-space: nowrap;
|
||||
}
|
||||
|
||||
.wunderbar__suggestion-label--action {
|
||||
margin-left: $spacing-vertical * 1/3;
|
||||
white-space: nowrap;
|
||||
overflow: hidden;
|
||||
text-overflow: ellipsis;
|
||||
}
|
||||
|
||||
.wunderbar__active-suggestion {
|
||||
|
|
Loading…
Reference in a new issue