|
3 | 3 | app |
4 | 4 | clipped-left |
5 | 5 | > |
6 | | - <v-icon large color="#1970b5">$printer3dNozzle</v-icon> |
7 | | - <v-toolbar-title class="title text-h4 mr-5 d-none d-sm-inline"> |
8 | | - {{ instanceName }} |
9 | | - </v-toolbar-title> |
10 | | - <v-spacer /> |
11 | | - <v-toolbar-items> |
12 | | - <v-btn text to="/"> |
13 | | - <v-icon small class="mr-md-1">$home</v-icon> |
14 | | - <span class="d-none d-md-inline">Dashboard</span> |
15 | | - </v-btn> |
16 | | - <v-btn text to="/configuration"> |
17 | | - <v-icon small class="mr-md-1">$tune</v-icon> |
18 | | - <span class="d-none d-md-inline">Printer</span> |
19 | | - </v-btn> |
20 | | - <v-btn text to="/settings"> |
21 | | - <v-icon small class="mr-md-1">$cog</v-icon> |
22 | | - <span class="d-none d-md-inline">Settings</span> |
23 | | - </v-btn> |
24 | | - <v-tooltip bottom v-if="socketConnected"> |
25 | | - <template v-slot:activator="{ on, attrs }"> |
26 | | - <v-btn |
27 | | - :disabled="!klippyConnected" |
28 | | - text |
29 | | - color="error" |
30 | | - @click="emergencyStop()" |
31 | | - v-bind="attrs" |
32 | | - v-on="on"> |
33 | | - <v-icon>$estop</v-icon> |
34 | | - </v-btn> |
35 | | - </template> |
36 | | - Emergency Stop |
37 | | - </v-tooltip> |
38 | | - <system-commands-widget></system-commands-widget> |
39 | | - </v-toolbar-items> |
| 6 | + <v-container fluid class="constrained-width py-0 fill-height"> |
| 7 | + <v-icon large color="#1970b5" class="d-none d-sm-inline">$printer3dNozzle</v-icon> |
| 8 | + <v-toolbar-title class="title text-h4 mr-5 d-none d-sm-inline"> |
| 9 | + {{ instanceName }} |
| 10 | + </v-toolbar-title> |
| 11 | + <v-spacer /> |
| 12 | + <v-toolbar-items> |
| 13 | + <v-btn text to="/"> |
| 14 | + <v-icon small class="mr-md-1">$home</v-icon> |
| 15 | + <span class="d-none d-md-inline">Dashboard</span> |
| 16 | + </v-btn> |
| 17 | + <v-btn text to="/configuration"> |
| 18 | + <v-icon small class="mr-md-1">$tune</v-icon> |
| 19 | + <span class="d-none d-md-inline">Printer</span> |
| 20 | + </v-btn> |
| 21 | + <v-btn text to="/settings"> |
| 22 | + <v-icon small class="mr-md-1">$cog</v-icon> |
| 23 | + <span class="d-none d-md-inline">Settings</span> |
| 24 | + </v-btn> |
| 25 | + <v-tooltip bottom v-if="socketConnected"> |
| 26 | + <template v-slot:activator="{ on, attrs }"> |
| 27 | + <v-btn |
| 28 | + :disabled="!klippyConnected" |
| 29 | + text |
| 30 | + color="error" |
| 31 | + @click="emergencyStop()" |
| 32 | + v-bind="attrs" |
| 33 | + v-on="on"> |
| 34 | + <v-icon>$estop</v-icon> |
| 35 | + </v-btn> |
| 36 | + </template> |
| 37 | + Emergency Stop |
| 38 | + </v-tooltip> |
| 39 | + <system-commands-widget></system-commands-widget> |
| 40 | + </v-toolbar-items> |
| 41 | + </v-container> |
40 | 42 | </v-app-bar> |
41 | 43 | </template> |
42 | 44 |
|
|
0 commit comments