datenel-react/playground/app.scss
2025-02-20 19:57:21 +11:00

21 lines
377 B
SCSS

body {
margin: 0;
font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, 'Helvetica Neue', Arial, sans-serif;
}
.app {
width: 100vw;
height: 100vh;
display: flex;
justify-content: center;
align-items: center;
.border {
display: flex;
gap: 0.5rem;
> * {
background: #fff;
border-radius: 5px;
box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
}
}
}