Commit 472377bf by t0ng7u

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

parent 6c7a10ac
...@@ -26,7 +26,7 @@ const PricingCardSkeleton = ({ ...@@ -26,7 +26,7 @@ const PricingCardSkeleton = ({
showRatio = false showRatio = false
}) => { }) => {
const placeholder = ( 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"> <div className="grid grid-cols-1 xl:grid-cols-2 2xl:grid-cols-3 gap-4">
{Array.from({ length: skeletonCount }).map((_, index) => ( {Array.from({ length: skeletonCount }).map((_, index) => (
<Card <Card
......
...@@ -215,7 +215,7 @@ const PricingCardView = ({ ...@@ -215,7 +215,7 @@ const PricingCardView = ({
} }
return ( 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"> <div className="grid grid-cols-1 xl:grid-cols-2 2xl:grid-cols-3 gap-4">
{paginatedModels.map((model, index) => { {paginatedModels.map((model, index) => {
const modelKey = getModelKey(model); const modelKey = getModelKey(model);
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or sign in to comment