mirror of
https://github.com/formbricks/formbricks.git
synced 2026-01-04 21:03:02 -06:00
* fat: added prisma model for Tag * feat: adds api route for tags * fat: added prisma model for Tag * feat: adds mutation hook for creating a tag * feat: adds apis for creating and retrieving tags * feat: adds sample UI for creating and retrieving tags * feat: adds UI components for Combobox * feat: adds api router for fetching all tags for a product * feat: adds combobox and api for appending tag to a response * feat: adds api call for removing a tag from a response * fix: relaced normal post with swr mutations * fix: mutations for adding and deleting tags * feat: integrated the create and delete tags apis and combobox * fix: fixes api routes and db queries for tags apis * fix: fixes api routes and headers * feat: adds tag delete functionality * feat: adds update tag api and UI * feat: adds tags count api and integration * feat: inital UI for tags table * fix: UI for autosave name component * fix: fixes api response * fix: fixes errors on merge tags * fat: added prisma model for Tag * fix: replaces lodash.debounce with lodash * fix: fixes capital letter tags not getting added * fix: changed tag table to relate to environment * fix: migrated tag apis from product to environment * fix: formatting with prettier * fix: fixes tags interface in single response * fix: fixes UI bugs * fix: fixes text on no tags * fix: deleted local migrations * fix: synced migrations with main * fix: fixes combobox bugs * fix: fixes placeholder * update migrations * fix build issues * fix tag adding functionality --------- Co-authored-by: Matthias Nannt <mail@matthiasnannt.com>
37 lines
569 B
CSS
37 lines
569 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;
|
|
}
|