mirror of
https://github.com/wassname/Open-Assistant.git
synced 2026-07-17 11:23:49 +08:00
15 lines
227 B
TypeScript
15 lines
227 B
TypeScript
import { defineStyleConfig } from "@chakra-ui/styled-system";
|
|
|
|
const baseStyle = {};
|
|
|
|
const variants = {
|
|
"no-padding": {
|
|
padding: 0,
|
|
},
|
|
};
|
|
|
|
export const containerTheme = defineStyleConfig({
|
|
baseStyle,
|
|
variants,
|
|
});
|