Skip to content

Commit 730dde4

Browse files
ValentineValentine
authored andcommitted
Fix: css padding rule in class 'div.relative.py-10'
1 parent c569312 commit 730dde4

File tree

3 files changed

+3
-5
lines changed

3 files changed

+3
-5
lines changed

examples/demo/src/app/(test)/layout.css

Lines changed: 0 additions & 3 deletions
This file was deleted.

examples/demo/src/app/(test)/layout.tsx

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,6 @@
11
'use client';
22
import { domAnimation, LazyMotion } from 'motion/react';
33
import { RenderTracker } from './ReactTracker';
4-
import './layout.css'
54

65
const layout: React.FC<{ children: React.ReactNode }> = ({ children }) => {
76
return (

examples/demo/src/app/globals.css

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,9 @@
66
0px 2px 2px -1.5px rgba(0, 0, 0, 0.32), 0px 4.4px 4.4px -2.25px rgba(0, 0, 0, 0.3), 0px 9.8px 9.8px -3px rgba(0, 0, 0, 0.25),
77
0px 25px 25px -3.75px rgba(0, 0, 0, 0.11), 0px -5px 5px -3.75px rgba(0, 0, 0, 0.11);
88
}
9-
9+
div.relative.py-10{
10+
padding: 0;
11+
}
1012
/* * {
1113
border: 1px dotted red;
1214
} */

0 commit comments

Comments
 (0)