mirror of
https://github.com/ajnart/homarr.git
synced 2025-11-11 16:05:47 +01:00
🐛 Fix gridstack className of service tile
This commit is contained in:
@@ -1,4 +1,4 @@
|
|||||||
import { Center, Text, UnstyledButton } from '@mantine/core';
|
import { Card, Center, Text, UnstyledButton } from '@mantine/core';
|
||||||
import { NextLink } from '@mantine/next';
|
import { NextLink } from '@mantine/next';
|
||||||
import { createStyles } from '@mantine/styles';
|
import { createStyles } from '@mantine/styles';
|
||||||
import { ServiceType } from '../../../../types/service';
|
import { ServiceType } from '../../../../types/service';
|
||||||
@@ -35,7 +35,7 @@ export const ServiceTile = ({ className, service }: ServiceTileProps) => {
|
|||||||
);
|
);
|
||||||
|
|
||||||
return (
|
return (
|
||||||
<HomarrCardWrapper>
|
<HomarrCardWrapper className={className}>
|
||||||
{/* TODO: add service menu */}
|
{/* TODO: add service menu */}
|
||||||
|
|
||||||
<div style={{ position: 'absolute', top: 10, right: 10 }}>
|
<div style={{ position: 'absolute', top: 10, right: 10 }}>
|
||||||
|
|||||||
Reference in New Issue
Block a user