1
0
mirror of https://github.com/matrix-org/matrix-react-sdk.git synced 2025-11-11 20:22:36 +03:00

Animate icon size

Signed-off-by: Šimon Brandner <simon.bra.ag@gmail.com>
This commit is contained in:
Šimon Brandner
2021-02-26 07:51:03 +01:00
parent 49ea9a4788
commit 1a7f9091b4
2 changed files with 17 additions and 5 deletions

View File

@@ -153,11 +153,11 @@ export default class AuxPanel extends React.Component<IProps, IState> {
if (this.props.draggingFile) {
fileDropTarget = (
<div className="mx_RoomView_fileDropTarget">
<div title={_t("Drop File Here")}>
<img src={require( "../../../../res/img/upload-big.svg")} />
<br />
{ _t("Drop file here to upload") }
</div>
<img
src={require( "../../../../res/img/upload-big.svg")}
className="mx_RoomView_fileDropTarget_image"
/>
{ _t("Drop file here to upload") }
</div>
);
}