Skip to content

Commit 7a5d005

Browse files
committed
w-full
1 parent 37e4648 commit 7a5d005

File tree

3 files changed

+3
-3
lines changed

3 files changed

+3
-3
lines changed

src/components/AdUnit.tsx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -10,7 +10,7 @@ export function InArticleAdUnit(): JSX.Element {
1010
}, []);
1111
return (
1212
<ins
13-
className="adsbygoogle min-w-96 min-h-48"
13+
className="adsbygoogle w-full min-h-48"
1414
style={{ display: "block", textAlign: "center", margin: "20px 0" }}
1515
data-ad-layout="in-article"
1616
data-ad-format="fluid"

src/screens/bedrock-experiments/index.tsx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -324,7 +324,7 @@ const ExperimentsEditor: React.FC = () => {
324324
const totalCount = experimentsData?.experiments.length || 0;
325325

326326
return (
327-
<div className="w-full md:max-w-4xl mx-auto px-6">
327+
<div className="max-w-4xl mx-auto px-6">
328328
<Card className="dark:bg-gray-900">
329329
<CardHeader>
330330
<h1 className="text-2xl font-bold text-gray-900 dark:text-white">

src/screens/hk-tunnels-tolls/index.tsx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -468,7 +468,7 @@ function HKTunnelsTollsApp({ t }: { t: TranslateFunction }): JSX.Element {
468468
const vehicleDescription = registryInfo.vehicleTypes[selectedVehicle].description;
469469

470470
return (
471-
<div className="w-full md:max-w-4xl mx-auto px-2">
471+
<div className="max-w-4xl mx-auto px-2">
472472
{/* Header */}
473473
<h1 className="text-center m-2 md:m-4 text-3xl md:text-4xl font-bold md:p-2">{t("pageHeading")}</h1>
474474
{/* Current Toll Display */}

0 commit comments

Comments
 (0)