Unverified Commit a5f3b051 authored by Wujiao233's avatar Wujiao233 Committed by GitHub

fix: round corner issue in resource blocks (#979)

parent 4ba9767b
...@@ -5,14 +5,14 @@ ...@@ -5,14 +5,14 @@
@apply w-full grid grid-cols-2 sm:grid-cols-3 gap-2 mt-2; @apply w-full grid grid-cols-2 sm:grid-cols-3 gap-2 mt-2;
> .memo-resource { > .memo-resource {
@apply shadow overflow-auto hide-scrollbar; @apply shadow rounded overflow-hidden hide-scrollbar;
> img { > img {
@apply cursor-pointer rounded min-h-full w-auto min-w-full object-cover; @apply cursor-pointer min-h-full w-auto min-w-full object-cover;
} }
> video { > video {
@apply cursor-pointer rounded w-full h-full object-contain bg-zinc-100 dark:bg-zinc-800; @apply cursor-pointer w-full h-full object-contain bg-zinc-100 dark:bg-zinc-800;
} }
} }
} }
......
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