mirror of
https://github.com/grafana/grafana.git
synced 2025-09-22 10:12:52 +08:00
13 lines
279 B
TypeScript
13 lines
279 B
TypeScript
import { css } from '@emotion/css';
|
|
|
|
import { GrafanaTheme2 } from '@grafana/data/src';
|
|
|
|
export const getPaginationStyles = (theme: GrafanaTheme2) => {
|
|
return css`
|
|
float: none;
|
|
display: flex;
|
|
justify-content: flex-start;
|
|
margin: ${theme.spacing(2, 0)};
|
|
`;
|
|
};
|