-
Notifications
You must be signed in to change notification settings - Fork 178
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Showing
58 changed files
with
946 additions
and
228 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,7 +1,7 @@ | ||
/* button styling */ | ||
@import '..'; | ||
|
||
:root { | ||
#root { | ||
--button-pad: 0.5rem; | ||
|
||
--button-disabled : { | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,6 +1,6 @@ | ||
@import '../index.css'; | ||
|
||
:root { | ||
#root { | ||
--mw-labeled-toggle: 25rem; | ||
} | ||
|
||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,6 +1,6 @@ | ||
@import '../..'; | ||
|
||
:root { | ||
#root { | ||
--deck-element: { | ||
fill: #fff; | ||
stroke: var(--c-plate-bg); | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file was deleted.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -13,132 +13,135 @@ type Diagrams = Record<string, string[]> | |
|
||
const FOOTPRINT_DIAGRAMS: Diagrams = { | ||
wellPlate: [ | ||
require('./images/dimensions/[email protected]'), | ||
require('./images/dimensions/[email protected]'), | ||
new URL('./images/dimensions/[email protected]', import.meta.url).href, | ||
new URL( | ||
'./images/dimensions/[email protected]', | ||
import.meta.url | ||
).href, | ||
], | ||
tipRack: [ | ||
require('./images/dimensions/[email protected]'), | ||
require('./images/dimensions/[email protected]'), | ||
import('./images/dimensions/[email protected]'), | ||
import('./images/dimensions/[email protected]'), | ||
], | ||
tubeRack: [ | ||
require('./images/dimensions/[email protected]'), | ||
require('./images/dimensions/[email protected]'), | ||
import('./images/dimensions/[email protected]'), | ||
import('./images/dimensions/[email protected]'), | ||
], | ||
reservoir: [ | ||
require('./images/dimensions/[email protected]'), | ||
require('./images/dimensions/[email protected]'), | ||
import('./images/dimensions/[email protected]'), | ||
import('./images/dimensions/[email protected]'), | ||
], | ||
irregular: [ | ||
require('./images/dimensions/[email protected]'), | ||
require('./images/dimensions/[email protected]'), | ||
import('./images/dimensions/[email protected]'), | ||
import('./images/dimensions/[email protected]'), | ||
], | ||
adapter: [ | ||
require('./images/dimensions/[email protected]'), | ||
require('./images/dimensions/[email protected]'), | ||
import('./images/dimensions/[email protected]'), | ||
import('./images/dimensions/[email protected]'), | ||
], | ||
} | ||
|
||
const ALUM_BLOCK_FOOTPRINTS: Diagrams = { | ||
tubeRack: [ | ||
require('./images/dimensions/[email protected]'), | ||
require('./images/dimensions/[email protected]'), | ||
import('./images/dimensions/[email protected]'), | ||
import('./images/dimensions/[email protected]'), | ||
], | ||
wellPlate: [ | ||
require('./images/dimensions/[email protected]'), | ||
require('./images/dimensions/[email protected]'), | ||
import('./images/dimensions/[email protected]'), | ||
import('./images/dimensions/[email protected]'), | ||
], | ||
} | ||
|
||
const RESERVOIR_SPACING_DIAGRAMS: Diagrams = { | ||
singleRow: [ | ||
require('./images/offset/[email protected]'), | ||
require('./images/spacing/[email protected]'), | ||
import('./images/offset/[email protected]'), | ||
import('./images/spacing/[email protected]'), | ||
], | ||
multiRow: [ | ||
require('./images/offset/[email protected]'), | ||
require('./images/spacing/[email protected]'), | ||
import('./images/offset/[email protected]'), | ||
import('./images/spacing/[email protected]'), | ||
], | ||
} | ||
|
||
const SPACING_DIAGRAMS: Diagrams = { | ||
circular: [ | ||
require('./images/offset/[email protected]'), | ||
require('./images/spacing/[email protected]'), | ||
import('./images/offset/[email protected]'), | ||
import('./images/spacing/[email protected]'), | ||
], | ||
rectangular: [ | ||
require('./images/offset/[email protected]'), | ||
require('./images/spacing/[email protected]'), | ||
import('./images/offset/[email protected]'), | ||
import('./images/spacing/[email protected]'), | ||
], | ||
} | ||
|
||
const TIPRACK_MEASUREMENT_DIAGRAMS: string[] = [ | ||
require('./images/depth/[email protected]'), | ||
require('./images/shape/[email protected]'), | ||
import('./images/depth/[email protected]'), | ||
import('./images/shape/[email protected]'), | ||
] | ||
|
||
type NestedDiagrams = Record<string, Record<string, string[]>> | ||
|
||
const PLATE_MEASUREMENT_DIAGRAMS: NestedDiagrams = { | ||
flat: { | ||
circular: [ | ||
require('./images/depth/[email protected]'), | ||
require('./images/shape/[email protected]'), | ||
import('./images/depth/[email protected]'), | ||
import('./images/shape/[email protected]'), | ||
], | ||
rectangular: [ | ||
require('./images/depth/[email protected]'), | ||
require('./images/shape/[email protected]'), | ||
import('./images/depth/[email protected]'), | ||
import('./images/shape/[email protected]'), | ||
], | ||
}, | ||
u: { | ||
circular: [ | ||
require('./images/depth/[email protected]'), | ||
require('./images/shape/[email protected]'), | ||
import('./images/depth/[email protected]'), | ||
import('./images/shape/[email protected]'), | ||
], | ||
rectangular: [ | ||
require('./images/depth/[email protected]'), | ||
require('./images/shape/[email protected]'), | ||
import('./images/depth/[email protected]'), | ||
import('./images/shape/[email protected]'), | ||
], | ||
}, | ||
v: { | ||
circular: [ | ||
require('./images/depth/[email protected]'), | ||
require('./images/shape/[email protected]'), | ||
import('./images/depth/[email protected]'), | ||
import('./images/shape/[email protected]'), | ||
], | ||
rectangular: [ | ||
require('./images/depth/[email protected]'), | ||
require('./images/shape/[email protected]'), | ||
import('./images/depth/[email protected]'), | ||
import('./images/shape/[email protected]'), | ||
], | ||
}, | ||
} | ||
const MEASUREMENT_DIAGRAMS: NestedDiagrams = { | ||
flat: { | ||
circular: [ | ||
require('./images/depth/[email protected]'), | ||
require('./images/shape/[email protected]'), | ||
import('./images/depth/[email protected]'), | ||
import('./images/shape/[email protected]'), | ||
], | ||
rectangular: [ | ||
require('./images/depth/[email protected]'), | ||
require('./images/shape/[email protected]'), | ||
import('./images/depth/[email protected]'), | ||
import('./images/shape/[email protected]'), | ||
], | ||
}, | ||
u: { | ||
circular: [ | ||
require('./images/depth/[email protected]'), | ||
require('./images/shape/[email protected]'), | ||
import('./images/depth/[email protected]'), | ||
import('./images/shape/[email protected]'), | ||
], | ||
rectangular: [ | ||
require('./images/depth/[email protected]'), | ||
require('./images/shape/[email protected]'), | ||
import('./images/depth/[email protected]'), | ||
import('./images/shape/[email protected]'), | ||
], | ||
}, | ||
v: { | ||
circular: [ | ||
require('./images/depth/[email protected]'), | ||
require('./images/shape/[email protected]'), | ||
import('./images/depth/[email protected]'), | ||
import('./images/shape/[email protected]'), | ||
], | ||
rectangular: [ | ||
require('./images/depth/[email protected]'), | ||
require('./images/shape/[email protected]'), | ||
import('./images/depth/[email protected]'), | ||
import('./images/shape/[email protected]'), | ||
], | ||
}, | ||
} | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,6 +1,6 @@ | ||
@import '..'; | ||
|
||
:root { | ||
#root { | ||
--list-padding-large: 1rem; | ||
--list-padding-small: 0.75rem; | ||
|
||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,7 +1,7 @@ | ||
/* common styling for modals */ | ||
@import '..'; | ||
|
||
:root { | ||
#root { | ||
--modal-contents: { | ||
z-index: 1; | ||
width: 100%; | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,6 +1,6 @@ | ||
@import '..'; | ||
|
||
:root { | ||
#root { | ||
--sidebar-width: 18.25rem; | ||
} | ||
|
||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,4 +1,4 @@ | ||
:root { | ||
* { | ||
/* ot brand */ | ||
--c-mustard: #ffd252; | ||
--c-blue: #006cfa; | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,6 +1,6 @@ | ||
/* cursor styling */ | ||
|
||
:root { | ||
#root { | ||
--clickable: { | ||
cursor: pointer; | ||
}; | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,4 +1,4 @@ | ||
:root { | ||
#root { | ||
--absolute-fill: { | ||
position: absolute; | ||
top: 0; | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,5 +1,5 @@ | ||
/* box-shadow settings */ | ||
|
||
:root { | ||
#root { | ||
--shadow-1: 0 2px 2px rgba(0, 0, 0, 0.2); | ||
} |
Oops, something went wrong.