mirror of
https://github.com/ilyakooo0/urbit.git
synced 2024-12-14 17:41:33 +03:00
chat: normalize line height
This commit is contained in:
parent
b426cb4d37
commit
6c33e01a64
@ -159,6 +159,7 @@ export class ChatScreen extends Component<ChatScreenProps, ChatScreenState> {
|
||||
>
|
||||
{this.state.dragover ? <SubmitDragger /> : null}
|
||||
<ChatHeader {...props} />
|
||||
<div className="h-100 w-100 overflow-hidden flex flex-column relative">
|
||||
<ChatWindow
|
||||
isChatMissing={isChatMissing}
|
||||
isChatLoading={isChatLoading}
|
||||
@ -189,6 +190,7 @@ export class ChatScreen extends Component<ChatScreenProps, ChatScreenState> {
|
||||
hideAvatars={props.hideAvatars}
|
||||
/>
|
||||
</div>
|
||||
</div>
|
||||
);
|
||||
}
|
||||
}
|
||||
|
@ -247,7 +247,7 @@ export const MessageContent = ({ content, remoteContentPolicy, measure }) => {
|
||||
);
|
||||
} else if ('me' in content) {
|
||||
return (
|
||||
<p className='f7 i lh-copy v-top'>
|
||||
<p className='f9 i lh-copy v-top'>
|
||||
{content.me}
|
||||
</p>
|
||||
);
|
||||
|
@ -64,7 +64,7 @@ export default class TextContent extends Component {
|
||||
&& (group[0] === content.text))) { // entire message is room name?
|
||||
return (
|
||||
<Link
|
||||
className="bb b--black b--white-d f7 mono lh-copy v-top"
|
||||
className="bb b--black b--white-d f9 mono lh-copy v-top"
|
||||
to={'/~groups/join/' + group.input}>
|
||||
{content.text}
|
||||
</Link>
|
||||
|
@ -2,7 +2,7 @@ import React, { Component } from 'react';
|
||||
|
||||
import Welcome from './lib/welcome';
|
||||
import { alphabetiseAssociations } from '~/logic/lib/util';
|
||||
import SidebarInvite from '~/views/components/SidebarInvite';
|
||||
import SidebarInvite from '~/views/components/Sidebar/SidebarInvite';
|
||||
import { GroupItem } from './lib/group-item';
|
||||
|
||||
export class Sidebar extends Component {
|
||||
|
@ -161,7 +161,7 @@ h2 {
|
||||
}
|
||||
|
||||
.unread-notice {
|
||||
top: 48px;
|
||||
top: 0px;
|
||||
}
|
||||
|
||||
/* responsive */
|
||||
|
Loading…
Reference in New Issue
Block a user