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

pull/1371/head
CorrectRoadH 2 years ago committed by GitHub
parent c189654cd9
commit f1f9140afc
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

@ -141,7 +141,7 @@ const ResourcesDashboard = () => {
<p className="w-full text-center text-base my-6 mt-8">{t("resources.fetching-data")}</p>
</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 ? (
<p className="w-full text-center text-base my-6 mt-8">{t("resources.no-resources")}</p>
) : (

Loading…
Cancel
Save