<% if (cssExtension.includes('tailwindcss')) { -%>
@tailwind components;
@tailwind utilities;
<% } -%>
html,
body {
	overflow-x: hidden;
	overflow-y: auto;
}
body {
	margin: 0;
	font-size: 16px;
	/* font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', 'Roboto', 'Oxygen',
    'Ubuntu', 'Cantarell', 'Fira Sans', 'Droid Sans', 'Helvetica Neue',
    sans-serif; */
	-webkit-font-smoothing: antialiased;
	-moz-osx-font-smoothing: grayscale;
}

input[type='number']::-webkit-inner-spin-button,
input[type='number']::-webkit-outer-spin-button {
	appearance: none;
	margin: 0;
}
input[type='number'] {
	appearance: textfield;
}

* {
	font-family: Poppins, sans-serif;
	transition: background 0.3s, fill 0.3s, stork 0.3s, color 0.3s,
		box-shadow 0.3s;
}

code {
	font-family: source-code-pro, Menlo, Monaco, Consolas, 'Courier New',
		monospace;
}

<% if (cssExtension.includes('tailwindcss')) { -%>
@layer components {
	/* 
        demo for antd
        .{app-prefix}-wrapper {
            .ant-layout {
                background: #fff;
            }
        }
    */
}
<% } -%>