Files
formbricks/apps/formbricks-com/styles/globals.css
Johannes fbcc9d5628 Update Docs, add Walkthrough Video to App & LP (#212)
* update LP with walk through

* update docs with attributes and events

* update team UI + form validation

* add walk through to app

* small fixes

---------

Co-authored-by: Matthias Nannt <mail@matthiasnannt.com>
2023-03-30 17:24:04 +02:00

45 lines
728 B
CSS

@import "tailwindcss/base";
@import "./fonts.css";
@import "./docsearch.css";
@import "./prism.css";
@import "tailwindcss/components";
@import "tailwindcss/utilities";
@tailwind base;
@tailwind components;
@tailwind utilities;
@layer base {
[data-nextjs-scroll-focus-boundary] {
display: contents;
}
}
/* Firefox */
* {
scrollbar-width: thin;
scrollbar-color: #e2e8f0;
}
/* Chrome, Edge, and Safari */
*::-webkit-scrollbar {
width: 10px;
}
*::-webkit-scrollbar-track {
background: #e2e8f0;
}
*::-webkit-scrollbar-thumb {
background-color: #cbd5e1;
border: 3px solid #cbd5e1;
}
.DocSearch-Input {
@apply px-11 text-gray-900 bg-white;
}
.dark .DocSearch-Input {
@apply text-gray-200 bg-gray-800;
}