Fix css box
parent
6e6eba2ca1
commit
95c2fc7c0d
|
|
@ -9,6 +9,8 @@ body {
|
||||||
body.chat-page {
|
body.chat-page {
|
||||||
height: 100vh;
|
height: 100vh;
|
||||||
overflow: hidden;
|
overflow: hidden;
|
||||||
|
display: flex;
|
||||||
|
flex-direction: column;
|
||||||
}
|
}
|
||||||
|
|
||||||
main {
|
main {
|
||||||
|
|
@ -20,8 +22,8 @@ main {
|
||||||
|
|
||||||
body.chat-page main {
|
body.chat-page main {
|
||||||
padding: 0;
|
padding: 0;
|
||||||
margin-top: 3em;
|
flex: 1;
|
||||||
height: calc(100vh - 3em);
|
min-height: 0;
|
||||||
}
|
}
|
||||||
|
|
||||||
main > header {
|
main > header {
|
||||||
|
|
@ -365,6 +367,7 @@ p.thread-info {
|
||||||
border-radius: 0;
|
border-radius: 0;
|
||||||
background-color: #fef6e4;
|
background-color: #fef6e4;
|
||||||
box-shadow: none;
|
box-shadow: none;
|
||||||
|
overflow: hidden;
|
||||||
}
|
}
|
||||||
|
|
||||||
.chat-header {
|
.chat-header {
|
||||||
|
|
@ -372,6 +375,7 @@ p.thread-info {
|
||||||
text-align: center;
|
text-align: center;
|
||||||
border-bottom: 1px solid #001858;
|
border-bottom: 1px solid #001858;
|
||||||
position: relative;
|
position: relative;
|
||||||
|
flex-shrink: 0;
|
||||||
}
|
}
|
||||||
|
|
||||||
.connection-status {
|
.connection-status {
|
||||||
|
|
@ -520,6 +524,7 @@ p.thread-info {
|
||||||
border-bottom: 1px solid #001858;
|
border-bottom: 1px solid #001858;
|
||||||
font-size: 0.85em;
|
font-size: 0.85em;
|
||||||
text-align: left;
|
text-align: left;
|
||||||
|
flex-shrink: 0;
|
||||||
}
|
}
|
||||||
|
|
||||||
.chat-breadcrumb a {
|
.chat-breadcrumb a {
|
||||||
|
|
@ -626,6 +631,7 @@ p.thread-info {
|
||||||
border-top: 1px solid #001858;
|
border-top: 1px solid #001858;
|
||||||
display: flex;
|
display: flex;
|
||||||
flex-direction: column;
|
flex-direction: column;
|
||||||
|
flex-shrink: 0;
|
||||||
}
|
}
|
||||||
|
|
||||||
.chat-input textarea {
|
.chat-input textarea {
|
||||||
|
|
|
||||||
Loading…
Reference in New Issue