@tailwind base;
@tailwind components;
@tailwind utilities;

/* 测试环境横幅样式 */
.env-banner {
  @apply fixed top-0 left-0 right-0 z-50;
}

/* 确保横幅不会遮挡内容 */
body {
  @apply pt-0;
}

/* 移动设备上的横幅样式 */
@media (max-width: 640px) {
  .env-banner {
    @apply text-sm;
  }
} 