fix(user_msg): rounded corner (#45)
All checks were successful
continuous-integration/drone/push Build is passing

Co-authored-by: Baoshuo Ren <i@baoshuo.ren>
This commit is contained in:
Pinghigh 2023-02-28 18:28:13 +08:00 committed by GitHub
parent 5d8720baa9
commit 8ccd1f642c
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -136,10 +136,19 @@ if (isset($_POST['user_msg'])) {
<h1>私信</h1>
<style>
#conversations {
border-radius: var(--bs-border-radius) !important;
}
@media (min-width: 768px) {
.chat-container {
height: calc(100ch - 10rem);
}
#conversations {
border-top-right-radius: 0 !important;
border-bottom-right-radius: 0 !important;
}
}
</style>