mirror of
https://github.com/formbricks/formbricks.git
synced 2026-02-05 02:58:36 -06:00
* Extensive Filtering of Responses * Delete .env * fix scroll * Delete .env * add all-time date filter option * increase filterOption max-width, update csv selection text * fix consent question filter * default onlyComplete to false * move ResponseFilterContext to app dir * show options when we switch surveys * Delete empty .env file --------- Co-authored-by: gitstart-formbricks <gitstart@users.noreply.github.com> Co-authored-by: Matthias Nannt <mail@matthiasnannt.com>
52 lines
910 B
CSS
52 lines
910 B
CSS
@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;
|
|
}
|
|
|
|
input:focus {
|
|
--tw-ring-color: none;
|
|
--tw-ring-offset-color: none;
|
|
--tw-ring-shadow: 0 0 #000 !important;
|
|
box-shadow: none;
|
|
}
|
|
|
|
@layer utilities {
|
|
@variants responsive {
|
|
/* Hide scrollbar for Chrome, Safari and Opera */
|
|
.no-scrollbar::-webkit-scrollbar {
|
|
display: none;
|
|
}
|
|
|
|
/* Hide scrollbar for IE, Edge and Firefox */
|
|
.no-scrollbar {
|
|
-ms-overflow-style: none; /* IE and Edge */
|
|
scrollbar-width: none; /* Firefox */
|
|
}
|
|
}
|
|
}
|