Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion src/bluetooth/BluetoothManager.ts
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@ import { IDisposable } from '@lumino/disposable';
import { Dialog, showDialog } from '@jupyterlab/apputils';

/**
* A class used to update the list of connected device and the related signals used to rerender the connected devices section.
* A class used to update the list of connected devices and the related signals used to rerender the connected devices section.
*/
export class BluetoothManager implements IBluetoothManager {
constructor() {
Expand Down
4 changes: 2 additions & 2 deletions src/movehub-extension/components/Vernie.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,7 @@ export default function Vernie({ themeManager }: IBuildProps) {
<img
src={currentSVGUrl}
alt="Vernie build represented with LeoCAD"
height="300px"
height="280px"
/>
)}
</UseSignal>
Expand All @@ -26,7 +26,7 @@ export default function Vernie({ themeManager }: IBuildProps) {
<img
src={VernieLightSVGUrl}
alt="Vernie build represented with LeoCAD"
height="300px"
height="280px"
/>
);
}
Expand Down
122 changes: 17 additions & 105 deletions style/VernieSchematicDark.svg
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
120 changes: 16 additions & 104 deletions style/VernieSchematicLight.svg
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
10 changes: 9 additions & 1 deletion style/base.css
Original file line number Diff line number Diff line change
Expand Up @@ -10,6 +10,8 @@
width: 100%;
box-sizing: border-box;
background-color: var(--jp-layout-color0);
max-width: 1200px;
margin: 0 auto;
}

.vernie-control-grid-container {
Expand Down Expand Up @@ -75,12 +77,13 @@

.move-input-field {
height: 24px;
padding: 0;
padding: 0 4px;
border-width: 0.5px;
border-radius: 4px;
width: 30px;
font-size: 10px;
background-color: var(--jp-layout-color2);
text-align: right;
}

.move-input-field-with-2buttons {
Expand Down Expand Up @@ -214,6 +217,11 @@
grid-template-columns: repeat(2, 1fr);
grid-template-rows: repeat(2, auto);
}

.vernie-control-grid-item-right {
justify-content: center;
grid-column: 1 / -1;
}
}

.manual-control-grid {
Expand Down
Loading