mirror of
https://github.com/acaloiaro/frm
synced 2026-07-21 18:29:12 +00:00
36 lines
No EOL
651 B
CSS
36 lines
No EOL
651 B
CSS
@tailwind base;
|
|
@tailwind components;
|
|
@tailwind utilities;
|
|
|
|
/*
|
|
globally kill the tailwind ring by default
|
|
*/
|
|
input {
|
|
--tw-ring-shadow: 0 0 #000 !important;
|
|
}
|
|
|
|
/*
|
|
Allow HTML5 validation on Choices-js
|
|
https://github.com/Choices-js/Choices/issues/449
|
|
*/
|
|
.choices[data-type*="select-one"] select.choices__input {
|
|
display: block !important;
|
|
opacity: 0;
|
|
pointer-events: none;
|
|
position: absolute;
|
|
left: 0;
|
|
bottom: 0;
|
|
}
|
|
|
|
.choices[data-type*="select-multiple"] select.choices__input {
|
|
display: block !important;
|
|
opacity: 0;
|
|
pointer-events: none;
|
|
position: absolute;
|
|
left: 0;
|
|
bottom: 0;
|
|
}
|
|
|
|
.choices {
|
|
margin-bottom: 0px !important;
|
|
} |