diff --git a/platform/ui/src/components/ViewportActionBar/ViewportActionBar.jsx b/platform/ui/src/components/ViewportActionBar/ViewportActionBar.jsx
index 8cfa05473..d17d3da71 100644
--- a/platform/ui/src/components/ViewportActionBar/ViewportActionBar.jsx
+++ b/platform/ui/src/components/ViewportActionBar/ViewportActionBar.jsx
@@ -93,7 +93,7 @@ const ViewportActionBar = ({ studyData, onSeriesChange }) => {
diff --git a/platform/ui/src/components/ViewportGrid/ViewportGrid.jsx b/platform/ui/src/components/ViewportGrid/ViewportGrid.jsx
index 855e63df5..cd9970c0d 100644
--- a/platform/ui/src/components/ViewportGrid/ViewportGrid.jsx
+++ b/platform/ui/src/components/ViewportGrid/ViewportGrid.jsx
@@ -9,7 +9,7 @@ const ViewportGrid = ({ rows, cols, viewportContents }) => {
theme('colors'),
+ backgroundColor: theme => theme('colors'),
backgroundPosition: {
bottom: 'bottom',
center: 'center',
@@ -196,7 +196,7 @@ module.exports = {
cover: 'cover',
contain: 'contain',
},
- borderColor: (theme) => ({
+ borderColor: theme => ({
...theme('colors'),
default: theme('colors.gray.300', 'currentColor'),
}),
@@ -310,7 +310,7 @@ module.exports = {
extrabold: '800',
black: '900',
},
- height: (theme) => ({
+ height: theme => ({
auto: 'auto',
...theme('spacing'),
full: '100%',
@@ -355,7 +355,7 @@ module.exports = {
...theme('spacing'),
...negative(theme('spacing')),
}),
- maxHeight: (theme) => ({
+ maxHeight: theme => ({
full: '100%',
screen: '100vh',
...theme('spacing'),
@@ -374,14 +374,15 @@ module.exports = {
'6xl': '72rem',
full: '100%',
...breakpoints(theme('screens')),
+ ...theme('spacing'),
}),
- minHeight: (theme) => ({
+ minHeight: theme => ({
...theme('spacing'),
'0': '0',
full: '100%',
screen: '100vh',
}),
- minWidth: (theme) => ({
+ minWidth: theme => ({
...theme('spacing'),
'0': '0',
xs: '2rem',
@@ -442,9 +443,9 @@ module.exports = {
'11': '11',
'12': '12',
},
- padding: (theme) => theme('spacing'),
- placeholderColor: (theme) => theme('colors'),
- stroke: (theme) => ({
+ padding: theme => theme('spacing'),
+ placeholderColor: theme => theme('colors'),
+ stroke: theme => ({
...theme('colors'),
current: 'currentColor',
}),
@@ -453,8 +454,8 @@ module.exports = {
'1': '1',
'2': '2',
},
- textColor: (theme) => theme('colors'),
- width: (theme) => ({
+ textColor: theme => theme('colors'),
+ width: theme => ({
auto: 'auto',
...theme('spacing'),
'1/2': '50%',
@@ -519,7 +520,7 @@ module.exports = {
'40': '40',
'50': '50',
},
- gap: (theme) => theme('spacing'),
+ gap: theme => theme('spacing'),
gridTemplateColumns: {
none: 'none',
'1': 'repeat(1, minmax(0, 1fr))',