@aj-archipelago/cortex
Version:
Cortex is a GraphQL API for AI. It provides a simple, extensible interface for using AI services from OpenAI, Azure and others.
21 lines (18 loc) • 424 B
CSS
@tailwind base;
@tailwind components;
@tailwind utilities;
html, body {
background: rgb(17, 24, 39); /* matches from-gray-900 */
min-height: 100%;
overscroll-behavior: none; /* prevents bounce on some browsers */
}
/* For Safari/iOS */
@supports (-webkit-overflow-scrolling: touch) {
body {
position: fixed;
width: 100%;
height: 100%;
overflow-y: auto;
-webkit-overflow-scrolling: touch;
}
}