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

32 lines
499 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;
display: flex;
justify-content: space-between;
align-items: center;
}
.window-header-title {
font-size: 20px;
font-weight: bolder;
overflow: hidden;
text-overflow: ellipsis;
2023-03-14 17:44:42 +00:00
white-space: nowrap;
display: block;
max-width: 50vw;
2023-03-13 16:25:07 +00:00
}
.window-header-sub-title {
font-size: 14px;
margin-top: 5px;
}
.window-actions {
display: inline-flex;
}
.window-action-button {
margin-left: 10px;
}