Files
blog-frontend/.storybook/constants.ts
Nikita Pozdniakov 7d3d87b1e5
Some checks failed
CI TEST (Vault secrets) / build (push) Failing after 9s
add Button component and Storybook configuration
2026-05-04 11:38:50 +03:00

31 lines
385 B
TypeScript

export const CUSTOM_VIEW_PORTS = {
sm: {
name: "Small",
styles: {
width: "375px",
height: "800px",
},
},
md: {
name: "Medium",
styles: {
width: "768px",
height: "1024px",
},
},
lg: {
name: "Large",
styles: {
width: "1024px",
height: "1366px",
},
},
xl: {
name: "Extra Large",
styles: {
width: "1440px",
height: "900px",
},
},
};