Skip to content

Commit aaf1b75

Browse files
committed
feat: inset
1 parent 00fbe14 commit aaf1b75

File tree

2 files changed

+7
-0
lines changed

2 files changed

+7
-0
lines changed

src/index.ts

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -144,6 +144,7 @@ import { ScrollSnapStopStyle } from './scroll-snap-stop';
144144
import { ScrollSnapTypeStyle } from './scroll-snap-type';
145145
import { WillChangeStyle } from './will-change';
146146
import { TextUnderlineOffsetStyle } from './text-underline-offset';
147+
import { InsetStyle } from './inset';
147148

148149
/**
149150
* 創建監聽器已追蹤整個 document 的 class
@@ -188,6 +189,7 @@ StyleSheet.Styles.push(
188189
TextTransformStyle,
189190
TextIndentStyle,
190191
VerticalAlignStyle,
192+
InsetStyle,
191193
LinesStyle,
192194
MaxHeightStyle,
193195
MaxWidthStyle,

src/inset.ts

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,5 @@
1+
import { Style } from '@master/style';
2+
3+
export class InsetStyle extends Style {
4+
static override key = 'inset';
5+
}

0 commit comments

Comments
 (0)