Skip to content

Commit eadf673

Browse files
committed
Fix styles
1 parent d26b3a9 commit eadf673

File tree

5 files changed

+17
-10
lines changed

5 files changed

+17
-10
lines changed

components/modules/hyperlane/LatestTransfersTable.vue

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -236,6 +236,9 @@ const handleOpenTransferModal = (transfer) => {
236236
height: 40px;
237237
238238
padding: 0;
239+
padding-right: 24px;
240+
padding-top: 8px;
241+
padding-bottom: 8px;
239242
240243
white-space: nowrap;
241244

components/modules/hyperlane/MailboxesTable.vue

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -190,6 +190,9 @@ const handleOpenMailboxModal = (mailbox) => {
190190
height: 40px;
191191
192192
padding: 0;
193+
padding-right: 24px;
194+
padding-top: 8px;
195+
padding-bottom: 8px;
193196
194197
white-space: nowrap;
195198

components/modules/hyperlane/TokensTable.vue

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -188,6 +188,9 @@ const handleOpenTokenModal = (token) => {
188188
height: 40px;
189189
190190
padding: 0;
191+
padding-right: 24px;
192+
padding-top: 8px;
193+
padding-bottom: 8px;
191194
192195
white-space: nowrap;
193196

components/modules/hyperlane/TransfersTable.vue

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -177,6 +177,7 @@ const handleOpenTransferModal = (transfer) => {
177177
178178
& tr th {
179179
text-align: left;
180+
180181
padding: 0;
181182
padding-right: 16px;
182183
padding-top: 12px;

error.vue

Lines changed: 7 additions & 10 deletions
Original file line numberDiff line numberDiff line change
@@ -48,18 +48,9 @@ const getGithubIssueLink = computed(() => {
4848
<Icon name="search" size="24" color="tertiary" />
4949

5050
<Flex direction="column" align="center" gap="12">
51-
<Text v-if="error?.statusCode == 404" size="16" weight="500" color="secondary">
51+
<Text v-if="error?.statusCode == 404" size="16" weight="500" height="160" color="secondary" :class="$style.status_title">
5252
{{ error?.statusMessage }}
5353
</Text>
54-
<!-- <Flex v-if="error?.statusCode == 404" direction="column" gap="6">
55-
<Text size="16" weight="500" color="secondary">
56-
{{ error?.statusMessage }}
57-
</Text>
58-
59-
<Text v-if="error?.data?.value" size="16" weight="500" color="secondary">
60-
{{ error?.statusMessage }}
61-
</Text>
62-
</Flex> -->
6354
<Text v-else size="16" weight="500" color="secondary"> Unknown Error </Text>
6455

6556
<Text
@@ -112,4 +103,10 @@ const getGithubIssueLink = computed(() => {
112103
padding: 0 24px;
113104
margin-top: 120px;
114105
}
106+
107+
.status_title {
108+
white-space: normal;
109+
word-break: break-all;
110+
overflow-wrap: anywhere;
111+
}
115112
</style>

0 commit comments

Comments
 (0)