Adapt the web version to Electron

This commit is contained in:
2025-08-24 23:15:20 +03:00
Unverified
parent 3bbfafa9e5
commit 8348547baa
12 changed files with 286 additions and 175 deletions
+1 -1
View File
@@ -5,7 +5,7 @@
display: flex;
justify-content: center;
align-items: center;
min-height: 100vh;
height: 100%;
padding: 2rem;
background-color: $color-dark-surface;
+2
View File
@@ -2,6 +2,8 @@
@use "common/material" as *;
#chat-interface {
height: 100%;
.header {
display: flex;
background-color: $color-dark-surface-container;
+43
View File
@@ -0,0 +1,43 @@
@use "common/material" as *;
#electron-title-bar {
display: none;
}
html.electron {
#electron-title-bar {
display: flex;
flex-direction: row;
gap: 8px;
height: 40px;
background-color: $color-dark-surface-container;
width: 100%;
-webkit-app-region: drag;
user-select: none;
z-index: 10;
transition: background-color 0.5s ease;
&.color-surface {
background-color: $color-dark-surface;
}
}
#window-title {
flex: 1;
display: flex;
align-items: center;
font-weight: 500;
}
&.platform-darwin .macos-padding {
width: 70px;
}
// .window-controls {
// -webkit-app-region: no-drag;
// .hidden {
// display: none;
// }
// }
}
+1 -1
View File
@@ -7,7 +7,7 @@
display: flex;
flex-direction: row;
width: 100%;
height: 100vh;
height: 100%;
}
#profile {
+8
View File
@@ -7,6 +7,7 @@
@use "common/components";
@use "common/colors" as *;
@use "common/material" as *;
@use "electron";
@use "lib/fonts/montserrat";
@use "lib/fonts/material-symbols";
@@ -24,6 +25,13 @@ body {
height: 100vh;
position: relative;
margin: 0;
display: flex;
flex-direction: column;
#main-wrapper {
flex: 1;
position: relative;
}
}
mdui-dialog {