Skip to content

Commit

Permalink
Really fix duplicate border around search results (mastodon#31305)
Browse files Browse the repository at this point in the history
  • Loading branch information
valtlai authored Aug 8, 2024
1 parent 176ba98 commit a95fe93
Showing 1 changed file with 7 additions and 9 deletions.
16 changes: 7 additions & 9 deletions app/javascript/styles/mastodon/components.scss
Original file line number Diff line number Diff line change
Expand Up @@ -3086,11 +3086,6 @@ $ui-header-logo-wordmark-width: 99px;
.explore__search-header {
display: flex;
}

.explore__search-results {
border: 0;
border-radius: 0;
}
}

.icon-with-badge {
Expand Down Expand Up @@ -8789,10 +8784,13 @@ noscript {
flex: 1 1 auto;
display: flex;
flex-direction: column;
border: 1px solid var(--background-border-color);
border-top: 0;
border-bottom-left-radius: 4px;
border-bottom-right-radius: 4px;

@media screen and (min-width: $no-gap-breakpoint) {
border: 1px solid var(--background-border-color);
border-top: 0;
border-bottom-left-radius: 4px;
border-bottom-right-radius: 4px;
}
}

.story {
Expand Down

0 comments on commit a95fe93

Please sign in to comment.