2018-04-12 07:23:35 +08:00
|
|
|
/*
|
2024-09-09 21:57:16 +08:00
|
|
|
Copyright 2024 New Vector Ltd.
|
2018-04-12 07:23:35 +08:00
|
|
|
Copyright 2015, 2016 OpenMarket Ltd
|
|
|
|
|
2024-09-09 21:57:16 +08:00
|
|
|
SPDX-License-Identifier: AGPL-3.0-only OR GPL-3.0-only
|
|
|
|
Please see LICENSE files in the repository root for full details.
|
2018-04-12 07:23:35 +08:00
|
|
|
*/
|
|
|
|
|
2023-08-30 19:47:35 +08:00
|
|
|
button.mx_BaseAvatar {
|
2023-09-11 17:27:12 +08:00
|
|
|
/* <button> is a form element and by default it uses the user agent (browser) styling.
|
|
|
|
We want it to inherit the font-family and line-height from its parent.
|
2023-08-30 19:47:35 +08:00
|
|
|
*/
|
2023-09-11 17:27:12 +08:00
|
|
|
font-family: inherit;
|
2023-09-08 18:01:21 +08:00
|
|
|
line-height: inherit;
|
2023-08-30 19:47:35 +08:00
|
|
|
}
|