Stop strange word wrap
This commit is contained in:
parent
122bb55535
commit
0a1d81528d
2 changed files with 2 additions and 2 deletions
|
@ -35,7 +35,7 @@ limitations under the License.
|
||||||
color: $foreground;
|
color: $foreground;
|
||||||
}
|
}
|
||||||
|
|
||||||
h1 {
|
.linkHeader h1 {
|
||||||
word-break: break-all;
|
word-break: break-all;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
|
@ -130,7 +130,7 @@ const LinkCreatedTile: React.FC<ILinkCreatedTileProps> = (props) => {
|
||||||
<img src={refreshIcon} />
|
<img src={refreshIcon} />
|
||||||
</button>
|
</button>
|
||||||
<a href={props.link}>
|
<a href={props.link}>
|
||||||
<h1>{props.link}</h1>
|
<h1 className="linkHeader">{props.link}</h1>
|
||||||
</a>
|
</a>
|
||||||
<Button
|
<Button
|
||||||
flashChildren={'Copied'}
|
flashChildren={'Copied'}
|
||||||
|
|
Loading…
Reference in a new issue