mirror of
https://github.com/sussy-code/smov.git
synced 2024-12-20 14:37:43 +01:00
Responsive rounded borders
This commit is contained in:
parent
ca99d7001e
commit
6d271bc7fd
2 changed files with 2 additions and 2 deletions
|
@ -7,7 +7,7 @@ export interface PaperProps {
|
|||
|
||||
export function Paper(props: PaperProps) {
|
||||
return (
|
||||
<div className={`bg-denim-200 rounded-xl p-12 ${props.className}`}>
|
||||
<div className={`bg-denim-200 lg:rounded-xl p-12 ${props.className}`}>
|
||||
{props.children}
|
||||
</div>
|
||||
)
|
||||
|
|
|
@ -14,7 +14,7 @@ export interface VideoPlayerProps {
|
|||
|
||||
export function SkeletonVideoPlayer(props: { error?: boolean }) {
|
||||
return (
|
||||
<div className="bg-denim-200 flex aspect-video w-full items-center justify-center rounded-xl">
|
||||
<div className="bg-denim-200 flex aspect-video w-full items-center justify-center lg:rounded-xl">
|
||||
{props.error ? (
|
||||
<div className="flex flex-col items-center">
|
||||
<IconPatch icon={Icons.WARNING} className="text-red-400" />
|
||||
|
|
Loading…
Reference in a new issue