Unverified Commit f1f9140a authored by CorrectRoadH's avatar CorrectRoadH Committed by GitHub

fix: the incorrectly height of grid row in safari (#1366)

parent c189654c
...@@ -141,7 +141,7 @@ const ResourcesDashboard = () => { ...@@ -141,7 +141,7 @@ const ResourcesDashboard = () => {
<p className="w-full text-center text-base my-6 mt-8">{t("resources.fetching-data")}</p> <p className="w-full text-center text-base my-6 mt-8">{t("resources.fetching-data")}</p>
</div> </div>
) : ( ) : (
<div className="w-full h-full grid grid-cols-2 md:grid-cols-4 md:px-6 gap-6"> <div className="w-full h-auto grid grid-cols-2 md:grid-cols-4 md:px-6 gap-6">
{resources.length === 0 ? ( {resources.length === 0 ? (
<p className="w-full text-center text-base my-6 mt-8">{t("resources.no-resources")}</p> <p className="w-full text-center text-base my-6 mt-8">{t("resources.no-resources")}</p>
) : ( ) : (
......
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 to comment