mirror of
https://github.com/ajnart/homarr.git
synced 2025-11-12 08:25:47 +01:00
Fix margin on the right side
This commit is contained in:
@@ -225,13 +225,9 @@ const fetchDashDotInfo = async (configName: string | undefined) => {
|
||||
).data) as DashDotInfo;
|
||||
};
|
||||
|
||||
export const useDashDotTileStyles = createStyles(() => ({
|
||||
export const useDashDotTileStyles = createStyles((theme) => ({
|
||||
graphsContainer: {
|
||||
display: 'flex',
|
||||
flexDirection: 'row',
|
||||
flexWrap: 'wrap',
|
||||
rowGap: 10,
|
||||
columnGap: 10,
|
||||
marginRight: theme.spacing.sm * -1, // fix because margin collapses weirdly
|
||||
},
|
||||
}));
|
||||
|
||||
|
||||
Reference in New Issue
Block a user