mirror of
https://github.com/nostalgic-css/NES.css.git
synced 2025-04-20 22:22:05 +02:00
* feat(storybook): Add backgrounds Storybook I've added the Storybook backgrounds addon which allows users viewing the storybook to change the background behind components, which will make it easier to see how the main NES.css theme looks in various contexts. * feat(storybook): Add backgrounds Storybook I've added the Storybook backgrounds addon which allows users viewing the storybook to change the background behind components, which will make it easier to see how the main NES.css theme looks in various contexts.
16 lines
319 B
HTML
16 lines
319 B
HTML
<link href="https://fonts.googleapis.com/css?family=Press+Start+2P" rel="stylesheet">
|
|
<style>
|
|
html, body, #root {
|
|
align-items: center;
|
|
background-color: transparent !important;
|
|
display: flex;
|
|
height: 100vh;
|
|
justify-content: center;
|
|
width: 100vw;
|
|
}
|
|
|
|
#root {
|
|
padding: 20px;
|
|
}
|
|
</style>
|