Migrate to Mantine v8 and Design Changes (#961)

* mantine v8 migration

* various design changes and improvements
This commit is contained in:
Jeff
2025-06-24 00:04:36 -07:00
committed by GitHub
parent bea55d48a8
commit c1330d92b2
473 changed files with 12469 additions and 11607 deletions
@@ -0,0 +1,75 @@
.container {
position: relative;
z-index: 190;
width: 100%;
height: 65px;
}
.header {
position: relative;
z-index: 15;
width: 100%;
height: 100%;
margin-right: 1rem;
pointer-events: auto;
user-select: auto;
-webkit-app-region: drag;
button {
-webkit-app-region: no-drag;
}
input {
-webkit-app-region: no-drag;
}
}
.header.pad-right {
margin-right: 140px;
}
.header.hidden {
pointer-events: none;
user-select: none;
}
.header.is-draggable {
-webkit-app-region: drag;
}
.background-image {
position: absolute;
top: 0;
z-index: 1;
width: 100%;
height: 100%;
background: var(--theme-colors-background);
}
.background-image-overlay {
position: absolute;
top: 0;
left: 0;
z-index: 10;
width: 100%;
height: 100%;
}
.background-image-overlay.light {
background: linear-gradient(rgb(255 255 255 / 25%), rgb(255 255 255 / 25%));
}
.background-image-overlay.dark {
background: linear-gradient(rgb(0 0 0 / 50%), rgb(0 0 0 / 50%));
}
.title-wrapper {
position: absolute;
display: flex;
width: 100%;
height: 100%;
}
.title-wrapper.hidden {
display: none;
}