create-intent-widget-v1
Version:
A tool to create intent widget
58 lines (49 loc) • 876 B
CSS
.App {
text-align: center;
position: absolute;
top: 0;
left: 0;
background: linear-gradient(139.73deg,#313d5c,#3d2a54);
}
* {
font-family: Kanit, sans-serif;
}
html, body, #root, .App {
width: 100%;
height: 100%;
margin: 0;
padding: 0;
display: flex;
justify-content: start ;
align-items: start;
}
.App-logo {
height: 40vmin;
pointer-events: none;
}
@media (prefers-reduced-motion: no-preference) {
.App-logo {
animation: App-logo-spin infinite 20s linear;
}
}
.App-header {
background-color: #282c34;
min-height: 100vh;
display: flex;
flex-direction: column;
align-items: center;
justify-content: center;
font-size: calc(10px + 2vmin);
color: white;
}
.App-link {
color: #61dafb;
}
@keyframes App-logo-spin {
from {
transform: rotate(0deg);
}
to {
transform: rotate(360deg);
}
}