@sunggang/ui-lib 0.0.8 → 0.0.10

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/index.esm.css CHANGED
@@ -534,6 +534,16 @@ video {
534
534
  }
535
535
  .container {
536
536
  width: 100%;
537
+ margin-right: auto;
538
+ margin-left: auto;
539
+ padding-right: 2rem;
540
+ padding-left: 2rem;
541
+ }
542
+ @media (min-width: 360px) {
543
+
544
+ .container {
545
+ max-width: 360px;
546
+ }
537
547
  }
538
548
  @media (min-width: 640px) {
539
549
 
@@ -559,10 +569,10 @@ video {
559
569
  max-width: 1280px;
560
570
  }
561
571
  }
562
- @media (min-width: 1536px) {
572
+ @media (min-width: 1400px) {
563
573
 
564
574
  .container {
565
- max-width: 1536px;
575
+ max-width: 1400px;
566
576
  }
567
577
  }
568
578
  .pointer-events-none {
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@sunggang/ui-lib",
3
- "version": "0.0.8",
3
+ "version": "0.0.10",
4
4
  "dependencies": {
5
5
  "@radix-ui/react-switch": "^1.0.3",
6
6
  "class-variance-authority": "^0.7.0",
@@ -0,0 +1,4 @@
1
+ import * as React from 'react';
2
+ import * as SwitchPrimitives from '@radix-ui/react-switch';
3
+ export declare const Switch: React.ForwardRefExoticComponent<Omit<SwitchPrimitives.SwitchProps & React.RefAttributes<HTMLButtonElement>, "ref"> & React.RefAttributes<HTMLButtonElement>>;
4
+ export default Switch;