Skip to content

Commit

Permalink
Changes to fix UI for mobile and/or small screens
Browse files Browse the repository at this point in the history
  • Loading branch information
jbuckmccready committed Aug 10, 2023
1 parent e84d846 commit bb4e179
Show file tree
Hide file tree
Showing 3 changed files with 3 additions and 4 deletions.
4 changes: 1 addition & 3 deletions frontend/src/App.vue
Original file line number Diff line number Diff line change
Expand Up @@ -21,11 +21,9 @@ const pageStyleFn = (offset: number) => {
</svg>
</q-icon>
</q-btn>
<!-- <q-toolbar-title> Cavalier Contours </q-toolbar-title> -->
<span class="text-h6"> Cavalier Contours </span>
<q-separator vertical spaced />

<q-tabs align="left" dense>
<q-tabs align="left" outside-arrows dense shrink>
<q-route-tab
v-for="route in mainRoutes"
:key="route.path"
Expand Down
2 changes: 1 addition & 1 deletion frontend/src/components/canvas_scene/scene_renderer.ts
Original file line number Diff line number Diff line change
Expand Up @@ -18,7 +18,7 @@ export enum SimpleColors {
Fuchsia = 0xc026d3,
}

export const VERTEX_DIM = 10;
export const VERTEX_DIM = 20;
export const HIT_DELTA = VERTEX_DIM / 2;
export const COLORS = [
SimpleColors.Red,
Expand Down
1 change: 1 addition & 0 deletions frontend/src/components/pages/AboutPage.vue
Original file line number Diff line number Diff line change
Expand Up @@ -10,6 +10,7 @@ const links = [

<template>
<div class="max-w-lg m-auto">
<span class="text-h6">Cavalier Contours Web Demo</span>
<p>
This is a web demo app for visualizing, testing, and documenting the
<a href="https://github.com/jbuckmccready/cavalier_contours" target="_blank" rel="noopener"
Expand Down

0 comments on commit bb4e179

Please sign in to comment.