mirror of
https://github.com/LemmyNet/lemmy-ui.git
synced 2024-11-10 02:15:11 +00:00
Merge pull request #1376 from jsit/fix/fix-intense-hr-color
fix: Fix too-intense hr color between posts
This commit is contained in:
commit
5f8a181c7b
|
@ -92,6 +92,8 @@ $input-border-color: $body-bg;
|
|||
$input-group-addon-color: $gray-500;
|
||||
$input-group-addon-bg: $gray-700;
|
||||
|
||||
$hr-border-color: rgba($body-color, 0.25);
|
||||
|
||||
$table-accent-bg: $gray-800;
|
||||
$table-border-color: $gray-700;
|
||||
|
||||
|
|
|
@ -76,3 +76,5 @@ $border-radius: 0.5rem;
|
|||
$border-radius-lg: 0.5rem;
|
||||
$border-radius-sm: 1rem;
|
||||
$rounded-pill: 0.25rem;
|
||||
|
||||
$hr-border-color: rgba($body-color, 0.25);
|
||||
|
|
|
@ -450,7 +450,7 @@ hr {
|
|||
margin-top: 1rem;
|
||||
margin-bottom: 1rem;
|
||||
border: 0;
|
||||
border-top: 1px solid rgba(0, 0, 0, 0.1);
|
||||
border-top: 1px solid rgba(222, 226, 230, 0.25);
|
||||
}
|
||||
|
||||
small,
|
||||
|
|
|
@ -450,7 +450,7 @@ hr {
|
|||
margin-top: 1rem;
|
||||
margin-bottom: 1rem;
|
||||
border: 0;
|
||||
border-top: 1px solid rgba(0, 0, 0, 0.1);
|
||||
border-top: 1px solid rgba(222, 226, 230, 0.25);
|
||||
}
|
||||
|
||||
small,
|
||||
|
|
|
@ -450,7 +450,7 @@ hr {
|
|||
margin-top: 1rem;
|
||||
margin-bottom: 1rem;
|
||||
border: 0;
|
||||
border-top: 1px solid rgba(0, 0, 0, 0.1);
|
||||
border-top: 1px solid rgba(222, 226, 230, 0.25);
|
||||
}
|
||||
|
||||
small,
|
||||
|
|
|
@ -449,7 +449,7 @@ hr {
|
|||
margin-top: 1rem;
|
||||
margin-bottom: 1rem;
|
||||
border: 0;
|
||||
border-top: 1px solid rgba(34, 34, 34, 0.1);
|
||||
border-top: 1px solid rgba(73, 80, 87, 0.25);
|
||||
}
|
||||
|
||||
small,
|
||||
|
|
|
@ -96,9 +96,7 @@ export class PostListings extends Component<PostListingsProps, any> {
|
|||
onAddAdmin={this.props.onAddAdmin}
|
||||
onTransferCommunity={this.props.onTransferCommunity}
|
||||
/>
|
||||
{idx + 1 !== this.posts.length && (
|
||||
<hr className="my-3 border border-primary" />
|
||||
)}
|
||||
{idx + 1 !== this.posts.length && <hr className="my-3" />}
|
||||
</>
|
||||
))
|
||||
) : (
|
||||
|
|
Loading…
Reference in a new issue