Skip to content

Commit

Permalink
Fix tickets update icon on mobiles (#559)
Browse files Browse the repository at this point in the history
  • Loading branch information
GusevPM authored Sep 5, 2023
1 parent b7e99c5 commit 4638dff
Show file tree
Hide file tree
Showing 2 changed files with 6 additions and 6 deletions.
2 changes: 1 addition & 1 deletion public/index.html
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@
<html lang="en">
<head>
<meta charset="utf-8">
<meta name="viewport" content="width=1280">
<meta name="viewport" content="width=1260">
<meta name="description" content="Tezos smart contract explorer simplifies perception and facilitates interaction. By Baking Bad.">
<meta name="keywords" content="Tezos, blockchain, explorer, smart contract, block explorer, dapp, crypto, cryptocurrency, XTZ, search, analysis, michelson, ligo, smartpy, lorentz, token, big map, sandbox">
<meta http-equiv="X-UA-Compatible" content="IE=edge">
Expand Down
10 changes: 5 additions & 5 deletions src/components/InternalOperation.vue
Original file line number Diff line number Diff line change
Expand Up @@ -83,7 +83,7 @@
</v-col>
</v-row>
<v-row no-gutters class="px-4 pt-4" style="font-size: 16px;">
<v-col cols="10">
<v-col cols="10" lg="10" xl="10" md="9">
<span v-if="data.tag" class="hash accent--text">event {{ data.tag }}</span>
<span v-else>
<span v-if="data.internal" class="mr-2 hash font-weight-thin">internal</span>
Expand All @@ -92,13 +92,13 @@
</span>
<v-chip class="ml-3 overline" :color="statusColor" small outlined label>{{ data.status }}</v-chip>
</v-col>
<v-col cols="1" class="text-right">
<v-col cols="1" class="d-flex justify-end">
<v-tooltip top v-if="data.ticket_updates_count > 0">
<template v-slot:activator="{ on }">
<v-btn
v-on="on"
icon
class="mr-7 text--secondary"
class="mr-5 text--secondary"
small
@click="openTicketCard"
>
Expand All @@ -120,11 +120,11 @@
</v-dialog>
</v-col>
<v-col
cols="1"
cols="1" lg="1" xl="1" md="2"
class="py-0 d-flex justify-end align-center"
v-if="showDetails"
>
<v-btn
v-if="showDetails"
text
small
@click="showParams = !showParams"
Expand Down

0 comments on commit 4638dff

Please sign in to comment.