Skip to content

Commit

Permalink
[Nadeem] ui changes
Browse files Browse the repository at this point in the history
  • Loading branch information
Nadeem-05 committed Nov 26, 2024
1 parent 2d85c13 commit e8cc845
Show file tree
Hide file tree
Showing 2 changed files with 15 additions and 8 deletions.
19 changes: 11 additions & 8 deletions frontend/src/routes/+page.svelte
Original file line number Diff line number Diff line change
Expand Up @@ -13,12 +13,12 @@
if (typeof document !== "undefined") {
const data = [
{ year: 0, count: 21000 },
{ year: 15, count: 23000 },
{ year: 30, count: 34000 },
{ year: 45, count: 43000 },
{ year: 60, count: 26902 },
{ year: 75, count: 34560 },
{ year: 90, count: 13494 },
{ year: 15, count: 23000 },
{ year: 30, count: 34000 },
{ year: 45, count: 43000 },
{ year: 60, count: 26902 },
{ year: 75, count: 34560 },
{ year: 90, count: 13494 },
];
const ctx = document.getElementById("acquisitions") as HTMLCanvasElement;
Expand Down Expand Up @@ -154,9 +154,11 @@
margin: auto auto;
user-select: none;
-webkit-user-select: none; /* For Safari */
-ms-user-select: none; /* For Internet Explorer/Edge */
-ms-user-select: none; /* For Internet Explorer/Edge */
}
:global(input, textarea) {
user-select: text;
}
:global(.app-container) {
min-height: 100vh;
position: relative;
Expand Down Expand Up @@ -205,6 +207,7 @@
0 10px 15px -3px rgba(0, 0, 0, 0.1),
0 4px 6px -2px rgba(0, 0, 0, 0.05);
}
.chart-container {
width: 100%;
max-width: 100%;
Expand Down
4 changes: 4 additions & 0 deletions main.go
Original file line number Diff line number Diff line change
Expand Up @@ -22,6 +22,7 @@ import (
"github.com/wailsapp/wails/v2/pkg/options/assetserver"
"github.com/wailsapp/wails/v2/pkg/options/linux"
"github.com/wailsapp/wails/v2/pkg/options/mac"
"github.com/wailsapp/wails/v2/pkg/options/windows"
"github.com/wailsapp/wails/v2/pkg/runtime"
"golang.org/x/crypto/ripemd160"
"gorm.io/driver/postgres"
Expand Down Expand Up @@ -464,6 +465,9 @@ func main() {
LogLevel: logger.ERROR,
LogLevelProduction: logger.ERROR,
Frameless: false,
Windows : &windows.Options{

},
Mac: &mac.Options{
TitleBar: &mac.TitleBar{
TitlebarAppearsTransparent: true,
Expand Down

0 comments on commit e8cc845

Please sign in to comment.