* chore: headers + common containers * fix: filters code splitting * fix: home header * fix: header changes * fix: uncommented filters * fix: used enums * fix: enum changes
12 lines
320 B
TypeScript
12 lines
320 B
TypeScript
export enum ERowVariant {
|
|
REGULAR = "regular",
|
|
HUGGING = "hugging",
|
|
}
|
|
export type TRowVariant = ERowVariant.REGULAR | ERowVariant.HUGGING;
|
|
export interface IRowProperties {
|
|
[key: string]: string;
|
|
}
|
|
export const rowStyle: IRowProperties = {
|
|
[ERowVariant.REGULAR]: "px-page-x",
|
|
[ERowVariant.HUGGING]: "px-0",
|
|
};
|