@solidstarters/create-solid-app 1.2.13 → 1.2.15

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Files changed (33) hide show
  1. package/package.json +5 -2
  2. package/publish.js +16 -0
  3. package/templates/nest-template/package-lock.json +121 -8
  4. package/templates/nest-template/package.json +2 -2
  5. package/templates/next-template/app/admin/core/[moduleName]/[modelName]/form/[id]/page.tsx +4 -79
  6. package/templates/next-template/app/admin/core/[moduleName]/[modelName]/kanban/page.tsx +1 -6
  7. package/templates/next-template/app/admin/core/[moduleName]/[modelName]/list/page.tsx +1 -6
  8. package/templates/next-template/app/admin/core/[moduleName]/home/page.tsx +8 -0
  9. package/templates/next-template/app/admin/layout.tsx +5 -54
  10. package/templates/next-template/app/admin/page.tsx +3 -4
  11. package/templates/next-template/app/admin/settings/app-settings/page.tsx +11 -0
  12. package/templates/next-template/app/admin/settings/authentication-settings/page.tsx +10 -0
  13. package/templates/next-template/app/admin/settings/misc-settings/page.tsx +10 -0
  14. package/templates/next-template/app/api/auth/[...nextauth]/route.ts +3 -219
  15. package/templates/next-template/app/auth/confirm-forgot-password/page.tsx +1 -6
  16. package/templates/next-template/app/auth/initiate-forgot-password-thank-you/page.tsx +2 -37
  17. package/templates/next-template/app/auth/initiate-google-oauth/page.tsx +9 -0
  18. package/templates/next-template/app/auth/initiate-login/page.tsx +13 -0
  19. package/templates/next-template/app/auth/initiate-register/page.tsx +14 -0
  20. package/templates/next-template/app/auth/layout.tsx +6 -125
  21. package/templates/next-template/app/globals.css +275 -41
  22. package/templates/next-template/app/layout.tsx +4 -5
  23. package/templates/next-template/app/solid-global.css +2 -0
  24. package/templates/next-template/next-env.d.ts +1 -1
  25. package/templates/next-template/package-lock.json +6 -6
  26. package/templates/next-template/package.json +3 -3
  27. package/templates/next-template/public/favicon.ico +0 -0
  28. package/templates/next-template/public/images/Navigation/settings.png +0 -0
  29. package/templates/next-template/public/styles/layout/_main.scss +23 -4
  30. package/templates/next-template/public/themes/solid-dark-purple/theme.css +13 -3
  31. package/templates/next-template/public/themes/solid-light-purple/theme.css +68 -15
  32. package/templates/next-template/redux/store.ts +5 -3
  33. package/templates/next-template/app/admin/settings/page.tsx +0 -19
@@ -1520,25 +1520,6 @@ li.header-li-px {
1520
1520
  font-size: 0.8rem;
1521
1521
  }
1522
1522
 
1523
- .s_group {
1524
- position: relative;
1525
- width: 100%;
1526
- overflow-x: auto;
1527
- }
1528
-
1529
- .s_group fieldset {
1530
- border: 0px;
1531
- }
1532
-
1533
- .s_group_heading {
1534
- position: absolute;
1535
- left: 10px;
1536
- top: -25px;
1537
- font-size: 0.7rem !important;
1538
- font-weight: 700;
1539
- color: #000 !important;
1540
- }
1541
-
1542
1523
  .small-input .p-multiselect-label .p-multiselect-token {
1543
1524
  padding: 3px;
1544
1525
  }
@@ -1677,12 +1658,14 @@ li.header-li-px {
1677
1658
  justify-content: space-between;
1678
1659
  }
1679
1660
 
1680
- /* .solid-form-wrapper{
1661
+ .solid-form-wrapper {
1681
1662
  overflow: hidden;
1682
- } */
1663
+ }
1683
1664
 
1684
1665
  .solid-form-wrapper .solid-form-content {
1685
- height: calc(100vh - 118px);
1666
+ height: calc(100vh - 64px);
1667
+ /* if Stepper */
1668
+ /* height: calc(100vh - 124px); */
1686
1669
  overflow-y: auto;
1687
1670
  }
1688
1671
 
@@ -1979,12 +1962,12 @@ li.header-li-px {
1979
1962
 
1980
1963
  .solid-panel-menu .menuHead a {
1981
1964
  text-decoration: none;
1982
- color: var(--secondary-dark-color);
1965
+ color: var(--solid-dark-title) !important;
1983
1966
  padding: 0.75rem 0rem 0.75rem 0rem;
1984
1967
  }
1985
1968
 
1986
1969
  .solid-panel-menu .menuHead a .sidebar-chevrons {
1987
- color: var(--secondary-dark-color);
1970
+ color: var(--solid-dark-title) !important;
1988
1971
  }
1989
1972
 
1990
1973
  /* .navBarTwo .subMenuHead {
@@ -2051,7 +2034,7 @@ li.header-li-px {
2051
2034
 
2052
2035
  .user-profile-panel .p-overlaypanel-content {
2053
2036
  padding: 0 !important;
2054
- min-width: 300px;
2037
+ /* min-width: 300px; */
2055
2038
  border: 1px solid #D8E2EA;
2056
2039
  border-radius: 0.25rem;
2057
2040
  box-shadow: 0px 4px 4px 0px rgba(200, 199, 199, 0.25);
@@ -2142,7 +2125,7 @@ li.header-li-px {
2142
2125
 
2143
2126
  .solid-auth-input-label {
2144
2127
  font-size: 0.875rem;
2145
- font-weight: 500;
2128
+ font-weight: 400;
2146
2129
  line-height: 1.25rem;
2147
2130
  }
2148
2131
 
@@ -2226,17 +2209,33 @@ li.header-li-px {
2226
2209
  color: #fff !important;
2227
2210
  }
2228
2211
 
2212
+ .listview-cogwheel-panel .p-overlaypanel-content {
2213
+ min-width: 220px;
2214
+ }
2215
+
2216
+ .cogwheel-column-filter label{
2217
+ font-size: 14px;
2218
+ }
2219
+
2229
2220
  .customize-layout-panel.p-overlaypanel {
2230
- left: 1400px !important;
2231
- top: 166px !important;
2221
+ /* left: 1400px !important;
2222
+ top: 21% !important; */
2223
+ left: 1370px !important;
2224
+ top: 19% !important;
2232
2225
  }
2233
2226
 
2234
2227
  .solid-auth-footer {
2235
- bottom: 5%;
2228
+ bottom: 2%;
2236
2229
  width: 80%;
2237
2230
  z-index: 999;
2238
2231
  }
2239
2232
 
2233
+ .solid-auth-footer-2 {
2234
+ bottom: 2%;
2235
+ width: 100%;
2236
+ z-index: 999;
2237
+ }
2238
+
2240
2239
  .auth-submit-button {
2241
2240
  display: flex !important;
2242
2241
  align-items: center !important;
@@ -2247,22 +2246,14 @@ li.header-li-px {
2247
2246
 
2248
2247
  .auth-submit-button .p-button-label {
2249
2248
  flex: none;
2249
+ font-weight: 400;
2250
2250
  }
2251
2251
 
2252
- @keyframes shake {
2253
- 0% { transform: translateX(0); }
2254
- 20% { transform: translateX(-5px); }
2255
- 40% { transform: translateX(5px); }
2256
- 60% { transform: translateX(-5px); }
2257
- 80% { transform: translateX(5px); }
2258
- 100% { transform: translateX(0); }
2252
+ .auth-back-button .p-button-label {
2253
+ font-weight: 400;
2254
+ color: #AEAEAE;
2259
2255
  }
2260
2256
 
2261
- .tab-error {
2262
- animation: shake 0.8s ease-in-out;
2263
- border-bottom: 3px solid red;
2264
- font-weight: bold;
2265
- }
2266
2257
  .p-button.p-button-icon-only.custom-add-button {
2267
2258
  padding: 4px !important;
2268
2259
  width: 2rem;
@@ -2279,4 +2270,247 @@ li.header-li-px {
2279
2270
  align-items: center;
2280
2271
  justify-content: space-between;
2281
2272
  background: var(--solid-light-grey);
2273
+ }
2274
+
2275
+ .solid-auth-tabview .p-tabview-panels {
2276
+ padding-left: 0;
2277
+ padding-right: 0;
2278
+ }
2279
+
2280
+ .solid-auth-tabview .p-tabview-nav {
2281
+ border-radius: 0.5rem;
2282
+ background: rgba(205, 205, 205, 0.20);
2283
+ border: 1px solid #d7d7d7;
2284
+ padding: 4px;
2285
+ margin: 5px 0;
2286
+ }
2287
+
2288
+ .solid-auth-tabview .p-tabview-nav a {
2289
+ font-weight: 400;
2290
+ }
2291
+
2292
+ .solid-auth-tabview .p-tabview-nav li {
2293
+ flex: 1;
2294
+ border-radius: 0.3rem;
2295
+ }
2296
+
2297
+ .solid-auth-tabview .p-tabview-nav-link {
2298
+ display: flex;
2299
+ align-items: center;
2300
+ justify-content: center;
2301
+ height: 40px;
2302
+ color: var(--solid-grey-500) !important;
2303
+ }
2304
+
2305
+ .solid-auth-tabview .p-tabview-selected.p-highlight {
2306
+ background-color: var(--primary-color);
2307
+ }
2308
+
2309
+ .solid-auth-tabview .p-tabview-selected.p-highlight .p-tabview-nav-link {
2310
+ color: #fff !important;
2311
+ }
2312
+
2313
+ .solid-auth-tabview .p-tabview-nav-link {
2314
+ border: none !important;
2315
+ }
2316
+
2317
+ .solid-global-search-filter .p-dialog-content {
2318
+ padding: 0;
2319
+ border-radius: 0.25rem;
2320
+ }
2321
+
2322
+ .solid-global-search-filter .p-dialog-content h5 {
2323
+ font-size: 1.25rem !important;
2324
+ }
2325
+
2326
+ .solid-global-search-filter .p-fieldset .p-fieldset-legend {
2327
+ padding: 0 !important;
2328
+ border: none !important;
2329
+ font-weight: 700;
2330
+ }
2331
+
2332
+ .solid-global-search-filter .p-fieldset .p-fieldset-content {
2333
+ padding: 0 1.25rem;
2334
+ }
2335
+
2336
+ .custom-filter-condition-btn {
2337
+ padding: 0.25rem 0.5rem !important;
2338
+ font-size: 0.625rem !important;
2339
+ }
2340
+
2341
+ .primary-filter-fieldset {
2342
+ background-color: #F8F7FC;
2343
+ }
2344
+
2345
+ .nested-custom-filter .primary-filter-fieldset {
2346
+ background-color: #FFF;
2347
+ }
2348
+
2349
+ .custom-filter-chip .p-chips-token {
2350
+ padding: 0.25rem 0.5rem !important;
2351
+ color: var(--primary-color) !important;
2352
+ font-size: 0.875rem !important;
2353
+ border-radius: 0.375rem !important;
2354
+ background: #FBF5FF !important;
2355
+ }
2356
+
2357
+ .solid-filter-action-btn .p-button-icon {
2358
+ font-weight: 600;
2359
+ color: var(--solid-form-title);
2360
+ font-size: 1rem;
2361
+ }
2362
+
2363
+
2364
+ .custom-filter-chip .p-chips-token-icon.pi {
2365
+ font-size: 12px !important;
2366
+ color: #000000E0;
2367
+ }
2368
+
2369
+ .custom-chip-column {
2370
+ color: rgba(0, 0, 0, 0.65);
2371
+ }
2372
+
2373
+ .custom-chip-value {
2374
+ color: #000000;
2375
+ }
2376
+
2377
+ .custom-chip-or {
2378
+ color: rgba(0, 0, 0, 0.65);
2379
+ font-weight: 700;
2380
+ }
2381
+
2382
+ .custom-filter-search-options button:first-child {
2383
+ background-color: #64748b0a;
2384
+ }
2385
+
2386
+ .custom-filter-search-options button:first-child:hover {
2387
+ background-color: transparent;
2388
+ }
2389
+
2390
+ .solid-layout-accordion .p-accordion .p-accordion-header .p-accordion-header-link {
2391
+ padding: 1.25rem 1.25rem 0.875rem 1.25rem;
2392
+ }
2393
+
2394
+ .solid-layout-accordion .p-accordion .p-accordion-tab {
2395
+ margin-bottom: 0;
2396
+ }
2397
+
2398
+ .solid-layout-accordion a {
2399
+ color: var(--solid-title);
2400
+ }
2401
+
2402
+ .solid-layout-accordion .p-accordion .p-accordion-header .p-accordion-header-link {
2403
+ border: none;
2404
+ background-color: transparent;
2405
+ }
2406
+
2407
+ .solid-layout-accordion .p-accordion-tab:first-child {
2408
+ border-bottom: 1px solid var(--primary-light-color);
2409
+ }
2410
+
2411
+ .solid-layout-accordion .p-accordion-content {
2412
+ border: none;
2413
+ padding: 0;
2414
+ border-radius: 0;
2415
+ }
2416
+
2417
+ .solid-layout-accordion .p-accordion-header a {
2418
+ display: flex;
2419
+ align-items: center;
2420
+ justify-content: space-between;
2421
+ flex-direction: row-reverse;
2422
+ }
2423
+
2424
+ .solid-layout-accordion label{
2425
+ color: #000;
2426
+ font-weight: 400;
2427
+ }
2428
+
2429
+ .solid-standard-autocomplete .p-inputtext {
2430
+ border-right: none;
2431
+ }
2432
+
2433
+ .solid-standard-autocomplete .p-autocomplete-dropdown.p-button {
2434
+ background-color: #fff;
2435
+ border-left: none;
2436
+ border-color: #d1d5db;
2437
+ color: rgba(0, 0, 0, 0.60);
2438
+ }
2439
+
2440
+ .solid-standard-autocomplete:hover .p-autocomplete-dropdown.p-button,
2441
+ .solid-standard-autocomplete:hover .p-inputtext {
2442
+ border-color: var(--primary-color);
2443
+ }
2444
+
2445
+ /* Hide right shadow of input and left shadow of button to make them merge */
2446
+ .solid-standard-autocomplete .p-inputtext:focus {
2447
+ box-shadow: 0 0 0 0.2rem #d3b5f5, inset -2px 0 0 #fff, inset 2px 0 0 transparent;
2448
+ }
2449
+
2450
+ .solid-standard-autocomplete .p-inputtext:focus+.p-button {
2451
+ box-shadow: 0 0 0 0.2rem #d3b5f5, inset -2px 0 0 transparent, inset 2px 0 0 #fff;
2452
+ border-color: #d1d5db !important;
2453
+ }
2454
+
2455
+ .solid-dialog .p-dialog-content {
2456
+ padding: 0 !important;
2457
+ }
2458
+
2459
+ .google-auth-button {
2460
+ font-weight: 400 !important;
2461
+ color: var(--solid-grey-500);
2462
+ /* font-size: 14px; */
2463
+ }
2464
+
2465
+ .custom-input-group.p-inputgroup-addon:first-child,
2466
+ .custom-input-group.p-inputgroup button:first-child,
2467
+ .custom-input-group.p-inputgroup input:first-child,
2468
+ .custom-input-group.p-inputgroup>.p-inputwrapper:first-child,
2469
+ .custom-input-group.p-inputgroup>.p-inputwrapper:first-child>.p-inputtext {
2470
+ border-top-left-radius: 8px;
2471
+ border-bottom-left-radius: 8px;
2472
+ }
2473
+
2474
+
2475
+ .custom-input-group.p-inputgroup-addon:last-child,
2476
+ .custom-input-group.p-inputgroup button:last-child,
2477
+ .custom-input-group.p-inputgroup input:last-child,
2478
+ .custom-input-group.p-inputgroup>.p-inputwrapper:last-child,
2479
+ .custom-input-group.p-inputgroup>.p-inputwrapper:last-child>.p-inputtext {
2480
+ border-top-right-radius: 8px;
2481
+ border-bottom-right-radius: 8px;
2482
+ }
2483
+
2484
+ .solid-form-stepper-overlay .p-button {
2485
+ min-width: 150px;
2486
+ }
2487
+
2488
+ .solid-form-stepper-overlay .p-button .p-button-label {
2489
+ color: var(--solid-title);
2490
+ font-weight: 400 !important;
2491
+ flex: none;
2492
+ font-size: 14px;
2493
+ }
2494
+
2495
+ .solid-form-stepper-overlay .p-button:hover .p-button-label {
2496
+ color: #fff;
2497
+ }
2498
+
2499
+ .solid-form-stepper-overlay .p-button.p-button-text:not(:disabled):hover {
2500
+ background-color: var(--primary-color);
2501
+ }
2502
+
2503
+ @keyframes shake {
2504
+ 0% { transform: translateX(0); }
2505
+ 20% { transform: translateX(-5px); }
2506
+ 40% { transform: translateX(5px); }
2507
+ 60% { transform: translateX(-5px); }
2508
+ 80% { transform: translateX(5px); }
2509
+ 100% { transform: translateX(0); }
2510
+ }
2511
+
2512
+ .tab-error {
2513
+ animation: shake 0.8s ease-in-out;
2514
+ border-bottom: 3px solid red;
2515
+ font-weight: bold;
2282
2516
  }
@@ -1,7 +1,6 @@
1
1
 
2
- import "./globals.css";
2
+ import "./solid-global.css";
3
3
  import '../public/styles/layout/layout.scss';
4
- import "./solid-stylesheet.css";
5
4
  // import "primereact/resources/themes/lara-light-cyan/theme.css";
6
5
  // import "primereact/resources/primereact.min.css";
7
6
  import "primereact/resources/primereact.css";
@@ -9,13 +8,12 @@ import "primeicons/primeicons.css";
9
8
  import "primeflex/primeflex.css";
10
9
  import type { Metadata } from "next";
11
10
  import { Inter } from "next/font/google";
12
- import Head from "./head";
13
11
  import { GlobalProvider } from "./GlobalProvider";
14
12
  import { PrimeReactProvider } from "primereact/api";
15
13
  import { CustomHeader } from "@solidstarters/solid-core-ui";
16
14
  import { CustomFooter } from "@solidstarters/solid-core-ui";
17
15
  import { LayoutProvider } from "@solidstarters/solid-core-ui";
18
- import { ToastContainer } from "@solidstarters/solid-core-ui";
16
+ import { SolidThemeLink } from "@solidstarters/solid-core-ui";
19
17
 
20
18
  const inter = Inter({
21
19
  subsets: ["latin"],
@@ -50,7 +48,8 @@ export default async function RootLayout({ children }: { children: React.ReactNo
50
48
  <meta content="width=device-width, initial-scale=1" name="viewport" />
51
49
  <meta name="description" content="Generated by create next app" />
52
50
  <link rel="icon" href="/favicon.ico" />
53
- <link id="theme-css" href={`/themes/solid-light-purple/theme.css`} rel="stylesheet"></link>
51
+ {/* <link id="theme-css" href={`/themes/solid-light-purple/theme.css`} rel="stylesheet"></link> */}
52
+ <SolidThemeLink />
54
53
  </head>
55
54
  <body>
56
55
  <GlobalProvider entities={solidEntities}>
@@ -0,0 +1,2 @@
1
+ @import url('./globals.css');
2
+ /* @import url('../public/styles/layout/layout.scss'); */
@@ -2,4 +2,4 @@
2
2
  /// <reference types="next/image-types/global" />
3
3
 
4
4
  // NOTE: This file should not be edited
5
- // see https://nextjs.org/docs/app/api-reference/config/typescript for more information.
5
+ // see https://nextjs.org/docs/app/building-your-application/configuring/typescript for more information.
@@ -12,7 +12,7 @@
12
12
  "@codemirror/theme-one-dark": "^6.1.2",
13
13
  "@hello-pangea/dnd": "^17.0.0",
14
14
  "@reduxjs/toolkit": "^1.9.5",
15
- "@solidstarters/solid-core-ui": "^1.1.9",
15
+ "@solidstarters/solid-core-ui": "^1.1.19",
16
16
  "@types/node": "20.5.9",
17
17
  "@types/react": "18.2.21",
18
18
  "@types/react-dom": "18.2.7",
@@ -35,7 +35,6 @@
35
35
  "moment": "^2.29.4",
36
36
  "moment-range": "^4.0.2",
37
37
  "mongoose": "^7.5.0",
38
- "next": "^14.2.13",
39
38
  "next-auth": "^4.23.1",
40
39
  "next-connect": "^1.0.0",
41
40
  "node-geocoder": "^4.2.0",
@@ -69,7 +68,8 @@
69
68
  "@types/lodash": "^4.17.9",
70
69
  "@types/pluralize": "^0.0.33",
71
70
  "@types/qs": "^6.9.15",
72
- "@types/react-js-pagination": "^3.0.7"
71
+ "@types/react-js-pagination": "^3.0.7",
72
+ "next": "^14.2.7"
73
73
  }
74
74
  },
75
75
  "node_modules/@babel/runtime": {
@@ -961,9 +961,9 @@
961
961
  }
962
962
  },
963
963
  "node_modules/@solidstarters/solid-core-ui": {
964
- "version": "1.1.9",
965
- "resolved": "https://registry.npmjs.org/@solidstarters/solid-core-ui/-/solid-core-ui-1.1.9.tgz",
966
- "integrity": "sha512-HXMZ9d57jugU9TeNNVXXRDUxuc0RmE1DmgbgspLwJbBpLQizFHAOUvkTRx78TADasow87Aj68sckzyZzuAFajg==",
964
+ "version": "1.1.19",
965
+ "resolved": "https://registry.npmjs.org/@solidstarters/solid-core-ui/-/solid-core-ui-1.1.19.tgz",
966
+ "integrity": "sha512-hkqp5WLxG0DCdZsN2g5BVhhrM2TD00dKIDMml/LMJr8CKsqtWkiACM8dajO8jV3D3EtqeeCA/Vzx+bYJaMqxcQ==",
967
967
  "license": "ISC",
968
968
  "dependencies": {
969
969
  "@hello-pangea/dnd": "^17.0.0",
@@ -14,7 +14,7 @@
14
14
  "@codemirror/theme-one-dark": "^6.1.2",
15
15
  "@hello-pangea/dnd": "^17.0.0",
16
16
  "@reduxjs/toolkit": "^1.9.5",
17
- "@solidstarters/solid-core-ui": "^1.1.9",
17
+ "@solidstarters/solid-core-ui": "^1.1.19",
18
18
  "@types/node": "20.5.9",
19
19
  "@types/react": "18.2.21",
20
20
  "@types/react-dom": "18.2.7",
@@ -37,7 +37,6 @@
37
37
  "moment": "^2.29.4",
38
38
  "moment-range": "^4.0.2",
39
39
  "mongoose": "^7.5.0",
40
- "next": "^14.2.13",
41
40
  "next-auth": "^4.23.1",
42
41
  "next-connect": "^1.0.0",
43
42
  "node-geocoder": "^4.2.0",
@@ -71,6 +70,7 @@
71
70
  "@types/lodash": "^4.17.9",
72
71
  "@types/pluralize": "^0.0.33",
73
72
  "@types/qs": "^6.9.15",
74
- "@types/react-js-pagination": "^3.0.7"
73
+ "@types/react-js-pagination": "^3.0.7",
74
+ "next": "^14.2.7"
75
75
  }
76
76
  }
@@ -15,6 +15,7 @@ body {
15
15
  min-height: 100%;
16
16
  -webkit-font-smoothing: antialiased;
17
17
  -moz-osx-font-smoothing: grayscale;
18
+ overflow: hidden;
18
19
  }
19
20
 
20
21
  a {
@@ -22,7 +23,25 @@ a {
22
23
  color: var(--primary-color);
23
24
  }
24
25
 
25
- // .layout-wrapper {
26
- // min-height: 100vh;
27
- // display: flex;
28
- // }
26
+ /* width */
27
+ ::-webkit-scrollbar {
28
+ width: 4px;
29
+ height: 4px; /* For horizontal scrollbar */
30
+ }
31
+
32
+ /* Track */
33
+ ::-webkit-scrollbar-track {
34
+ box-shadow: inset 0 0 5px #EFEFEF;
35
+ border-radius: 10px;
36
+ }
37
+
38
+ /* Handle */
39
+ ::-webkit-scrollbar-thumb {
40
+ background: #ADADAD;
41
+ border-radius: 10px;
42
+ }
43
+
44
+ /* Handle on hover */
45
+ ::-webkit-scrollbar-thumb:hover {
46
+ background: #c7c6c6;
47
+ }
@@ -1166,6 +1166,10 @@
1166
1166
  outline-color: transparent;
1167
1167
  }
1168
1168
 
1169
+ .solid-custom-filter-wrapper .p-chips .p-chips-multiple-container {
1170
+ padding: 0.12rem 0.65625rem;
1171
+ }
1172
+
1169
1173
  .p-chips .p-chips-multiple-container .p-chips-token {
1170
1174
  padding: 0.375rem 0.75rem;
1171
1175
  margin-right: 0.5rem;
@@ -4141,7 +4145,7 @@
4141
4145
  padding: 0.954rem 1rem;
4142
4146
  border: 1px solid #424b57;
4143
4147
  border-width: 1px 0 1px 0;
4144
- font-weight: 700;
4148
+ font-weight: 600;
4145
4149
  color: rgba(255, 255, 255, 0.87);
4146
4150
  background: #1f2937;
4147
4151
  transition: box-shadow 0.2s;
@@ -6310,7 +6314,7 @@
6310
6314
  .p-dialog .p-dialog-content {
6311
6315
  background: #1f2937;
6312
6316
  color: rgba(255, 255, 255, 0.87);
6313
- padding: 0 1.5rem 2rem 1.5rem;
6317
+ /* padding: 0 1.5rem 2rem 1.5rem; */
6314
6318
  }
6315
6319
 
6316
6320
  .p-dialog .p-dialog-content:last-of-type {
@@ -7566,6 +7570,11 @@
7566
7570
  outline: 0 none;
7567
7571
  }
7568
7572
 
7573
+ .p-panelmenu-header-content .menuHead:hover {
7574
+ background-color: #424b57;
7575
+ border-radius: 6px;
7576
+ }
7577
+
7569
7578
  .p-panelmenu .p-panelmenu-header .p-panelmenu-header-content {
7570
7579
  border: 1px solid #424b57;
7571
7580
  color: rgba(255, 255, 255, 0.87);
@@ -8882,7 +8891,8 @@
8882
8891
 
8883
8892
  @layer primereact {
8884
8893
  .p-button-label {
8885
- font-weight: 700;
8894
+ /* font-weight: 700; */
8895
+ font-weight: 400;
8886
8896
  }
8887
8897
 
8888
8898
  .p-selectbutton>.p-button,