create-dynamic-app
Version:
CLI tool to generate sample applications using Dynamic's web3 authentication
35 lines (31 loc) • 482 B
text/typescript
export const indexCSSContent = `
/* Import a web font */
@import url("https://fonts.googleapis.com/css2?family=Inter:wght@400;500;600;700&display=swap");
/* Reset CSS */
* {
margin: 0;
padding: 0;
box-sizing: border-box;
}
html,
body,
width: 100%;
height: 100%;
font-family:
"Inter",
-apple-system,
BlinkMacSystemFont,
"Segoe UI",
Roboto,
Oxygen,
Ubuntu,
Cantarell,
"Open Sans",
"Helvetica Neue",
sans-serif;
}
body {
overflow-x: hidden;
}
`