Make the created link actually a link
This commit is contained in:
parent
820d90ee86
commit
33b08da026
@ -31,6 +31,11 @@ limitations under the License.
|
|||||||
|
|
||||||
> a {
|
> a {
|
||||||
color: $foreground;
|
color: $foreground;
|
||||||
|
font-weight: bold;
|
||||||
|
font-size: 24px;
|
||||||
|
line-height: 32px;
|
||||||
|
text-align: left;
|
||||||
|
text-decoration: underline;
|
||||||
}
|
}
|
||||||
|
|
||||||
.createLinkReset {
|
.createLinkReset {
|
||||||
|
@ -128,7 +128,9 @@ const LinkCreatedTile: React.FC<ILinkCreatedTileProps> = (props) => {
|
|||||||
<div>New link</div>
|
<div>New link</div>
|
||||||
<img src={refreshIcon} alt="Go back to matrix.to home page" />
|
<img src={refreshIcon} alt="Go back to matrix.to home page" />
|
||||||
</button>
|
</button>
|
||||||
<h1 className="linkHeader matrixIdentifier">{props.link}</h1>
|
<a className="matrixIdentifier" href={props.link}>
|
||||||
|
{props.link}
|
||||||
|
</a>
|
||||||
<Button
|
<Button
|
||||||
flashChildren={'Copied'}
|
flashChildren={'Copied'}
|
||||||
icon={copyIcon}
|
icon={copyIcon}
|
||||||
|
Loading…
Reference in New Issue
Block a user