ChatGPT-Next-Web/app/components/window.scss
2023-04-07 01:42:40 +00:00

39 lines
663 B
SCSS

.window-header {
padding: 14px 20px;
border-bottom: rgba(202, 10, 10, 0.1) 1px solid;
position: relative;
display: flex;
justify-content: space-between;
align-items: center;
background-color:#0bc398;
}
.window-header-title {
max-width: calc(100% - 100px);
overflow: hidden;
.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;
}