mobilebytesensei's picture
how can I fetch the X-Avatar-Key to make the request
5c17346 verified
Raw
History Blame Contribute Delete
453 Bytes
/* Custom styles */
body {
font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, sans-serif;
display: flex;
flex-direction: column;
min-height: 100vh;
}
pre code {
font-family: 'Fira Code', monospace;
}
@keyframes pulse {
0%, 100% {
opacity: 1;
}
50% {
opacity: 0.5;
}
}
.loading {
animation: pulse 1.5s cubic-bezier(0.4, 0, 0.6, 1) infinite;
}