mirror of
https://github.com/LemmyNet/lemmy.git
synced 2024-11-04 16:09:41 +00:00
Thinner blockquotes. Corrected user on private messaging.
This commit is contained in:
parent
1a9c1677d3
commit
25fa97a20a
2 changed files with 2 additions and 2 deletions
2
ui/assets/css/main.css
vendored
2
ui/assets/css/main.css
vendored
|
@ -117,7 +117,7 @@
|
|||
}
|
||||
|
||||
blockquote {
|
||||
border-left: 3px solid #ccc;
|
||||
border-left: 1px solid var(--secondary);
|
||||
margin: 0.5em 5px;
|
||||
padding: 0.1em 5px;
|
||||
}
|
||||
|
|
2
ui/src/components/private-message-form.tsx
vendored
2
ui/src/components/private-message-form.tsx
vendored
|
@ -126,7 +126,7 @@ export class PrivateMessageForm extends Component<
|
|||
{this.state.recipient && (
|
||||
<div class="col-sm-10 form-control-plaintext">
|
||||
<Link
|
||||
className="text-info"
|
||||
className="text-body font-weight-bold"
|
||||
to={`/u/${this.state.recipient.name}`}
|
||||
>
|
||||
{this.state.recipient.avatar && showAvatars() && (
|
||||
|
|
Loading…
Reference in a new issue