This commit is contained in:
Pine Wu 2018-07-05 04:41:19 -07:00
Родитель 485ba180cc
Коммит 92cc777a73
2 изменённых файлов: 7 добавлений и 1 удалений

Просмотреть файл

@ -54,7 +54,6 @@ export default {
}
.title {
margin-left: 30px;
h2 {
margin-top: 16px;

Просмотреть файл

@ -27,6 +27,8 @@ export default Vue.extend({
</script>
<style lang="scss">
@import '@/scss/global.scss';
.msg-header,
.msg-list {
margin-left: auto;
@ -42,5 +44,10 @@ export default Vue.extend({
.msg-list {
display: flex;
flex-flow: column;
height: calc(100vh - 250px);
padding-top: 20px;
overflow: scroll;
border-top: 2px solid $active-bg;
border-bottom: 2px solid $active-bg;
}
</style>