1
0
mirror of https://github.com/bitwarden/browser synced 2025-12-06 00:13:28 +00:00

[CL-653] Fix provider setup bg and vault filter truncation (#16018)

This commit is contained in:
Vicki League
2025-08-14 14:01:53 -04:00
committed by GitHub
parent 27089fbb57
commit 736e615ebd
2 changed files with 16 additions and 0 deletions

View File

@@ -49,6 +49,11 @@
}
}
body {
@apply tw-bg-background;
@apply tw-text-main;
}
/**
* Loading page
*/

View File

@@ -10,6 +10,11 @@
font-size: 1rem;
}
button {
overflow: hidden;
text-overflow: ellipsis;
}
h3,
button.filter-button {
margin: 0;
@@ -68,6 +73,12 @@
display: flex;
align-items: center;
button,
a {
overflow: hidden;
text-overflow: ellipsis;
}
.contents {
display: contents;
}