9 lines
192 B
TypeScript
9 lines
192 B
TypeScript
import { type SystemStyleObject } from "@chakra-ui/react";
|
|
|
|
export const stickyHeaderStyle: SystemStyleObject = {
|
|
position: "sticky",
|
|
top: "0",
|
|
backgroundColor: "#fff",
|
|
zIndex: 10,
|
|
};
|