Explorar el Código

🍭 ui: change pricing page card view `p-4` to `px-4`

t0ng7u hace 6 meses
padre
commit
fa686207ed

+ 1 - 1
web/src/components/table/model-pricing/view/card/PricingCardSkeleton.jsx

@@ -26,7 +26,7 @@ const PricingCardSkeleton = ({
   showRatio = false
 }) => {
   const placeholder = (
-    <div className="p-4">
+    <div className="px-4">
       <div className="grid grid-cols-1 xl:grid-cols-2 2xl:grid-cols-3 gap-4">
         {Array.from({ length: skeletonCount }).map((_, index) => (
           <Card

+ 1 - 1
web/src/components/table/model-pricing/view/card/PricingCardView.jsx

@@ -215,7 +215,7 @@ const PricingCardView = ({
   }
 
   return (
-    <div className="p-4">
+    <div className="px-4">
       <div className="grid grid-cols-1 xl:grid-cols-2 2xl:grid-cols-3 gap-4">
         {paginatedModels.map((model, index) => {
           const modelKey = getModelKey(model);