Skip to content

Commit 70ecb2d

Browse files
committed
fix class names
1 parent a1968db commit 70ecb2d

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed

src/DocsOverview.res

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
module Card = {
22
@react.component
33
let make = (~title: string, ~hrefs: array<(string, string)>) => {
4-
<div className="max-w[21rem] border border-gray-10 bg-gray-5 px-5 py-8 rounded-lg">
4+
<div className="max-w-[21rem] border border-gray-10 bg-gray-5 px-5 py-8 rounded-lg">
55
<h2 className="font-bold text-24 mb-4"> {React.string(title)} </h2>
66
<ul>
77
{Array.map(hrefs, ((text, href)) =>

src/components/Navigation.res

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -103,7 +103,7 @@ let make = (~fixed=true, ~isOverlayOpen: bool, ~setOverlayOpen: (bool => bool) =
103103
/* Desktop horizontal navigation */
104104
<div
105105
className="flex items-center xs:justify-between w-full bg-gray-90 sm:h-auto sm:relative">
106-
<div className="flex ml-10 space-x-5 w-full max-w-320 text-gray-40 max-w[26rem]">
106+
<div className="flex ml-10 space-x-5 w-full text-gray-40 max-w-[26rem]">
107107
<Link
108108
href={`/docs/manual/${version}/introduction`} className={isDocRouteActive(~route)}>
109109
{React.string("Docs")}

0 commit comments

Comments
 (0)