We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 253d5f9 commit 25842b2Copy full SHA for 25842b2
1 file changed
src/pages/Devices.tsx
@@ -29,7 +29,7 @@ const Devices = ({
29
// const variant = useVariant();
30
const variantName = useVariantName();
31
32
- return (<Row className="row-cols row-cols-1 row-cols-xl-2 gy-4">
+ return (<Row className="row-cols row-cols-1 row-cols-xl-2 gy-4 justify-content-center">
33
{isLoading && <Col className="text-center">
34
<LoadingIcon large/>
35
</Col>}
@@ -39,7 +39,7 @@ const Devices = ({
39
const isUnavailable = device?.statuses?.available === false;
40
const isOpen = device?.statuses?.open === true;
41
42
- return (<Col key={device.id}>
+ return (<Col key={device.id} className={`col-xl-${2*deviceActions.length}`}>
43
<Card>
44
<Card.Header
45
className={'text-start' + (variantName === "initlab" ? ' bg-primary text-light' : '')}>
0 commit comments