|
88 | 88 | v{{version}} |
89 | 89 | </small> |
90 | 90 | </div> |
91 | | - <div class="ml-2"> |
92 | | - <v-btn href="https://github.com/duinoapp/duinoapp-client/issues" target="_blank" rel="noopener noreferrer" text small> |
93 | | - <v-icon small left>mdi-bug-outline</v-icon> |
94 | | - Issues |
95 | | - </v-btn> |
96 | | - <v-btn href="https://github.com/duinoapp/duinoapp-client/wiki/Privacy-Policy" target="_blank" rel="noopener noreferrer" text small> |
97 | | - <v-icon small left>mdi-incognito</v-icon> |
98 | | - Privacy |
99 | | - </v-btn> |
100 | | - <v-btn href="https://github.com/duinoapp/duinoapp-client/wiki/Terms-of-Service" target="_blank" rel="noopener noreferrer" text small> |
101 | | - <v-icon small left>mdi-scale-balance</v-icon> |
102 | | - Terms |
103 | | - </v-btn> |
| 91 | + <div :class="{ 'ml-2': true, 'mr-auto': $vuetify.breakpoint.mdAndDown }"> |
| 92 | + <v-tooltip top> |
| 93 | + <template #activator="{ on }"> |
| 94 | + <v-btn |
| 95 | + href="https://github.com/duinoapp/duinoapp-client/issues" |
| 96 | + target="_blank" |
| 97 | + rel="noopener noreferrer" |
| 98 | + :text="!$vuetify.breakpoint.mdAndDown" |
| 99 | + :icon="$vuetify.breakpoint.mdAndDown" |
| 100 | + small |
| 101 | + v-on="on" |
| 102 | + > |
| 103 | + <v-icon small left>mdi-bug-outline</v-icon> |
| 104 | + {{ !$vuetify.breakpoint.mdAndDown ? 'Issues' : '' }} |
| 105 | + </v-btn> |
| 106 | + </template> |
| 107 | + <span>Report an Issue/Bug</span> |
| 108 | + </v-tooltip> |
| 109 | + <v-tooltip top> |
| 110 | + <template #activator="{ on }"> |
| 111 | + <v-btn |
| 112 | + href="https://github.com/duinoapp/duinoapp-client/wiki/Privacy-Policy" |
| 113 | + target="_blank" |
| 114 | + rel="noopener noreferrer" |
| 115 | + :text="!$vuetify.breakpoint.mdAndDown" |
| 116 | + :icon="$vuetify.breakpoint.mdAndDown" |
| 117 | + small |
| 118 | + v-on="on" |
| 119 | + > |
| 120 | + <v-icon small left>mdi-incognito</v-icon> |
| 121 | + {{ !$vuetify.breakpoint.mdAndDown ? 'Privacy' : '' }} |
| 122 | + </v-btn> |
| 123 | + </template> |
| 124 | + <span>Privacy Policy</span> |
| 125 | + </v-tooltip> |
| 126 | + <v-tooltip top> |
| 127 | + <template #activator="{ on }"> |
| 128 | + <v-btn |
| 129 | + href="https://github.com/duinoapp/duinoapp-client/wiki/Terms-of-Service" |
| 130 | + target="_blank" |
| 131 | + rel="noopener noreferrer" |
| 132 | + :text="!$vuetify.breakpoint.mdAndDown" |
| 133 | + :icon="$vuetify.breakpoint.mdAndDown" |
| 134 | + small |
| 135 | + v-on="on" |
| 136 | + > |
| 137 | + <v-icon small left>mdi-scale-balance</v-icon> |
| 138 | + {{ !$vuetify.breakpoint.mdAndDown ? 'Terms' : '' }} |
| 139 | + </v-btn> |
| 140 | + </template> |
| 141 | + <span>Terms of Service</span> |
| 142 | + </v-tooltip> |
104 | 143 | </div> |
105 | 144 | <v-spacer/> |
106 | 145 | <serial-footer v-if="serialReady" /> |
|
0 commit comments