1
0
mirror of https://github.com/bitwarden/browser synced 2025-12-19 01:33:33 +00:00

Merge pull request #870 from gryffs/box-content-flex

Add flexbox to cipher list to correct display center issue.
This commit is contained in:
Chad Scharf
2021-05-04 16:05:26 -04:00
committed by GitHub
2 changed files with 25 additions and 13 deletions

View File

@@ -130,4 +130,14 @@
}
}
}
.flex-cipher-list-item {
flex-direction: column;
flex-wrap: nowrap;
justify-content: center;
align-items: flex-start;
white-space: nowrap;
overflow: hidden;
text-overflow: ellipsis;
}
}