mirror of
https://github.com/bitwarden/browser
synced 2025-12-20 18:23:31 +00:00
31 lines
726 B
CSS
31 lines
726 B
CSS
@tailwind base;
|
|
@tailwind components;
|
|
@tailwind utilities;
|
|
|
|
@import "../../../../libs/components/src/tw-theme.css";
|
|
|
|
/**
|
|
* tw-break-words does not work with table cells:
|
|
* https://github.com/tailwindlabs/tailwindcss/issues/835
|
|
*/
|
|
td.tw-break-words {
|
|
overflow-wrap: anywhere;
|
|
}
|
|
|
|
/**
|
|
* tw-list-none hides summary arrow in Firefox & Chrome but not Safari:
|
|
* https://github.com/tailwindlabs/tailwindcss/issues/924#issuecomment-915509785
|
|
*/
|
|
summary.tw-list-none::marker,
|
|
summary.tw-list-none::-webkit-details-marker {
|
|
display: none;
|
|
}
|
|
|
|
/**
|
|
* Arbitrary values can't be used with `text-align`:
|
|
* https://github.com/tailwindlabs/tailwindcss/issues/802#issuecomment-849013311
|
|
*/
|
|
.tw-text-unset {
|
|
text-align: unset;
|
|
}
|