mirror of
https://github.com/vector-im/hydrogen-web.git
synced 2024-11-20 03:25:52 +01:00
Css fix
Signed-off-by: RMidhunSuresh <rmidhunsuresh@gmail.com>
This commit is contained in:
parent
b97b9da14a
commit
1ce111c317
@ -64,6 +64,7 @@ limitations under the License.
|
||||
|
||||
.Timeline_messageAvatar {
|
||||
grid-area: avatar;
|
||||
text-decoration: none;
|
||||
}
|
||||
|
||||
.Timeline_messageSender {
|
||||
|
@ -42,7 +42,7 @@ export class BaseMessageView extends TemplateView {
|
||||
// should be after body as it is overlayed on top
|
||||
t.button({className: "Timeline_messageOptions"}, "⋯"),
|
||||
]);
|
||||
const avatar = t.a({href: vm.memberPanelLink}, [renderStaticAvatar(vm, 30, "Timeline_messageAvatar")]);
|
||||
const avatar = t.a({href: vm.memberPanelLink, className: "Timeline_messageAvatar"}, [renderStaticAvatar(vm, 30)]);
|
||||
// given that there can be many tiles, we don't add
|
||||
// unneeded DOM nodes in case of a continuation, and we add it
|
||||
// with a side-effect binding to not have to create sub views,
|
||||
|
Loading…
Reference in New Issue
Block a user