@flower-city-online/itinerary-lib 0.0.58 → 0.0.59

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.
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@flower-city-online/itinerary-lib",
3
- "version": "0.0.58",
3
+ "version": "0.0.59",
4
4
  "peerDependencies": {
5
5
  "@angular/cdk": "^17.3.10",
6
6
  "@angular/core": "^17.3.10",
@@ -555,3 +555,25 @@ ion-range::part(knob) {
555
555
  // .fading-line {
556
556
  // display: none;
557
557
  // }
558
+
559
+
560
+ ::-webkit-scrollbar-track {
561
+ background-color: var(
562
+ --secondary-color
563
+ ) !important; /* Change this to your desired track color */
564
+ }
565
+
566
+ /* Customize scrollbar thumb */
567
+ ::-webkit-scrollbar-thumb {
568
+ background-color: var(
569
+ --secondary-color
570
+ ) !important; /* Change this to your desired thumb color */
571
+ border-radius: 5px; /* Optional: Rounded corners on scrollbar thumb */
572
+ }
573
+
574
+ /* Customize scrollbar corners */
575
+ ::-webkit-scrollbar-corner {
576
+ background-color: var(
577
+ --secondary-color
578
+ ) !important; /* Change this to your desired corner color */
579
+ }