mirror of
https://github.com/minoplhy/chhoto-url.git
synced 2024-11-22 09:16:46 +00:00
Limit link table row height
This commit is contained in:
parent
04421a592b
commit
0c101a55bf
@ -25,6 +25,12 @@
|
||||
input {
|
||||
width: 65%;
|
||||
}
|
||||
|
||||
table tr td div {
|
||||
max-height: 75px;
|
||||
line-height: 25px;
|
||||
overflow: scroll;
|
||||
}
|
||||
</style>
|
||||
</head>
|
||||
|
||||
|
@ -52,7 +52,9 @@ const deleteButton = (shortUrl) => {
|
||||
|
||||
const TD = (s) => {
|
||||
const td = document.createElement("td");
|
||||
td.innerHTML = s;
|
||||
const div = document.createElement("div");
|
||||
div.innerHTML = s;
|
||||
td.appendChild(div);
|
||||
return td;
|
||||
};
|
||||
|
||||
|
Loading…
Reference in New Issue
Block a user