.panel{ | |
background-color: var(--card-bg); | |
height:100%; | |
width:100%; | |
} | |
.header{ | |
border-bottom:1px solid var(--border-color); | |
box-shadow: 1px; | |
height:10%; | |
width:100%; | |
display:flex; | |
justify-content: space-between; | |
} | |
.header .title{ | |
font:bold ; | |
color:var(--text-color); | |
} | |
.header .more{ | |
font:bold ; | |
color:var(--text-color); | |
} | |
.content .item{ | |
display:flex; | |
justify-content:space-between; | |
} | |
.content .item .text{ | |
width:70%; | |
overflow-x:hidden; | |
color:var(--text-color); | |
} | |