1
0
mirror of https://github.com/bitwarden/browser synced 2025-12-17 16:53:34 +00:00

[SM-73] fix defects (#4572)

* [SM-431] fix project name overflow

* [SM-432] sort project list alphabetically

* [SM-458] add delete button

* [SM-430] misc UI fixes

* override tw-break-words in table cell

* update copy

* remove unused copy
This commit is contained in:
Will Martin
2023-02-06 22:41:08 -05:00
committed by GitHub
parent d42d626154
commit 40e6471070
6 changed files with 60 additions and 13 deletions

View File

@@ -3,3 +3,11 @@
@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;
}