ChatGPT-Next-Web/app/styles/window.scss

37 lines
628 B
SCSS
Raw Normal View History

2023-03-13 16:25:07 +00:00
.window-header {
padding: 14px 20px;
border-bottom: rgba(0, 0, 0, 0.1) 1px solid;
position: relative;
2023-03-13 16:25:07 +00:00
display: flex;
justify-content: space-between;
align-items: center;
}
.window-header-title {
2023-03-19 16:09:30 +00:00
max-width: calc(100% - 100px);
2023-04-05 11:32:45 +00:00
overflow: hidden;
2023-03-19 16:09:30 +00:00
.window-header-main-title {
font-size: 20px;
font-weight: bolder;
overflow: hidden;
text-overflow: ellipsis;
white-space: nowrap;
display: block;
max-width: 50vw;
}
2023-03-13 16:25:07 +00:00
2023-03-19 16:09:30 +00:00
.window-header-sub-title {
font-size: 14px;
}
2023-03-13 16:25:07 +00:00
}
.window-actions {
display: inline-flex;
}
.window-action-button:not(:first-child) {
2023-03-13 16:25:07 +00:00
margin-left: 10px;
}