Fixed responsive properties

This commit is contained in:
Alejandro Celaya
2018-08-04 17:52:56 +02:00
parent ee6193ace8
commit 3c0f1716aa
4 changed files with 10 additions and 14 deletions

View File

@@ -35,7 +35,7 @@ export class ShortUrlsRow extends React.Component {
<td className="short-urls-row__cell">
<a href={completeShortUrl} target="_blank">{completeShortUrl}</a>
</td>
<td className="short-urls-row__cell">
<td className="short-urls-row__cell short-urls-row__cell--break">
<a href={shortUrl.originalUrl} target="_blank">{shortUrl.originalUrl}</a>
</td>
<td className="short-urls-row__cell">{this.renderTags(shortUrl.tags)}</td>

View File

@@ -3,6 +3,9 @@
.short-urls-row__cell {
vertical-align: middle !important;
}
.short-urls-row__cell--break {
word-break: break-all;
}
.short-urls-row__cell--relative {
position: relative;