fix: text overflow in table layout
This commit is contained in:
@@ -16,9 +16,7 @@
|
||||
{{ parseShortcodeRequest.method }}
|
||||
</div>
|
||||
<div class="table-column" :data-label="t('shortcodes.url')">
|
||||
<div class="max-w-50 lg:max-w-90 truncate">
|
||||
{{ parseShortcodeRequest.endpoint }}
|
||||
</div>
|
||||
{{ parseShortcodeRequest.endpoint }}
|
||||
</div>
|
||||
<div
|
||||
ref="timeStampRef"
|
||||
@@ -126,7 +124,7 @@ const copyShortcode = (codeID: string) => {
|
||||
|
||||
<style lang="scss">
|
||||
.table-column {
|
||||
@apply flex flex-1 items-center justify-between px-3 py-3;
|
||||
@apply flex flex-1 items-center px-3 py-3 truncate;
|
||||
}
|
||||
|
||||
.table-row-groups {
|
||||
|
||||
@@ -213,10 +213,7 @@
|
||||
{{ t("empty.shortcodes") }}
|
||||
</span>
|
||||
</div>
|
||||
<div
|
||||
v-else-if="!loading"
|
||||
class="table w-full border-collapse table-auto"
|
||||
>
|
||||
<div v-else-if="!loading">
|
||||
<div
|
||||
class="bg-primaryLight hidden lg:flex rounded-t w-full"
|
||||
>
|
||||
|
||||
Reference in New Issue
Block a user