mirror of
https://github.com/pierre42100/ComunicWeb
synced 2024-11-23 12:39:22 +00:00
28 lines
433 B
CSS
28 lines
433 B
CSS
/**
|
|
* Conversations page main script file
|
|
*
|
|
* @author Pierre HUBERT
|
|
*/
|
|
|
|
|
|
.conversations-page #pageTarget {
|
|
display: flex;
|
|
flex-direction: column;
|
|
}
|
|
|
|
.conversations-page-container {
|
|
max-width: 1000px;
|
|
margin: auto;
|
|
display: flex;
|
|
flex-direction: column;
|
|
flex: 1;
|
|
width: 100%;
|
|
padding-bottom: 20px;
|
|
padding-top: 20px;
|
|
}
|
|
|
|
|
|
.conversations-page-container .conv-list-loading-msg {
|
|
text-align: center;
|
|
padding: 10px;
|
|
} |