[Update] Add Window Title bar.
[bugfix] Note: I think this is tauri's bug. When I try to resize the window and hovered dragable area, I could see resize cursor but it work as a dragging the window behavior that should't be. Updated npm packages but still not work so I managed it as adding margin-top by referring Discord title bar.
This commit is contained in:
@@ -1,15 +1,18 @@
|
||||
.container {
|
||||
width: 100%;
|
||||
height: 0%;
|
||||
transition: transform 0.5s ease;
|
||||
transition: top 0.5s ease;
|
||||
position: absolute;
|
||||
top: 0;
|
||||
left: 0;
|
||||
}
|
||||
|
||||
.show_config.container {
|
||||
transform: translateY(0vh);
|
||||
top: 0;
|
||||
}
|
||||
|
||||
.show_main.container {
|
||||
transform: translateY(100vh);
|
||||
top: 100%;
|
||||
}
|
||||
|
||||
|
||||
|
||||
Reference in New Issue
Block a user