Skip to content

Commit

Permalink
ktl-1608 feat: test review fixes (#3879)
Browse files Browse the repository at this point in the history
  • Loading branch information
krutilov authored Oct 23, 2024
1 parent ff7428d commit c16f42e
Show file tree
Hide file tree
Showing 2 changed files with 6 additions and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -102,6 +102,9 @@ $secondary-font-color: rgba(255, 255, 255, 0.7);
.popup-wrapper {
min-width: 100% !important;
}
.search-hotkey-popup {
display: none;
}
}

.template-wrapper {
Expand Down Expand Up @@ -132,7 +135,7 @@ $secondary-font-color: rgba(255, 255, 255, 0.7);
font-weight: 600;
line-height: 24px;
-webkit-box-orient: vertical;
-webkit-line-clamp: 3;
-webkit-line-clamp: 2;
}

.template-description {
Expand All @@ -150,7 +153,7 @@ $secondary-font-color: rgba(255, 255, 255, 0.7);
line-height: 20px;
justify-self: end;
-webkit-box-orient: vertical;
-webkit-line-clamp: 3;
-webkit-line-clamp: 2;
}

@media screen and (width <= 759px) {
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -42,6 +42,7 @@ const WithFuzzySearchFilterComponent: React.FC<Props> = ({ data }: Props) => {
data={data}
popupClassName={'popup-wrapper'}
onSelect={onChangeSelected}
maxHeight={510}
customAnchor={({ wrapperProps, buttonProps, popup }: CustomAnchorProps) => (
<DokkaSearchAnchor wrapperProps={wrapperProps} buttonProps={buttonProps} popup={popup} />
)}
Expand Down

0 comments on commit c16f42e

Please sign in to comment.