mirror of
https://github.com/ChatGPTNextWeb/ChatGPT-Next-Web.git
synced 2024-12-09 09:30:19 +08:00
35 lines
588 B
SCSS
35 lines
588 B
SCSS
.window-header {
|
|
padding: 14px 20px;
|
|
border-bottom: rgba(0, 0, 0, 0.1) 1px solid;
|
|
|
|
display: flex;
|
|
justify-content: space-between;
|
|
align-items: center;
|
|
}
|
|
|
|
.window-header-title {
|
|
max-width: calc(100% - 100px);
|
|
|
|
.window-header-main-title {
|
|
font-size: 20px;
|
|
font-weight: bolder;
|
|
overflow: hidden;
|
|
text-overflow: ellipsis;
|
|
white-space: nowrap;
|
|
display: block;
|
|
max-width: 50vw;
|
|
}
|
|
|
|
.window-header-sub-title {
|
|
font-size: 14px;
|
|
margin-top: 5px;
|
|
}
|
|
}
|
|
|
|
.window-actions {
|
|
display: inline-flex;
|
|
}
|
|
|
|
.window-action-button {
|
|
margin-left: 10px;
|
|
} |