Skip to content

Commit

Permalink
feat: inset
Browse files Browse the repository at this point in the history
  • Loading branch information
BenSeage committed Dec 30, 2021
1 parent 00fbe14 commit aaf1b75
Show file tree
Hide file tree
Showing 2 changed files with 7 additions and 0 deletions.
2 changes: 2 additions & 0 deletions src/index.ts
Original file line number Diff line number Diff line change
Expand Up @@ -144,6 +144,7 @@ import { ScrollSnapStopStyle } from './scroll-snap-stop';
import { ScrollSnapTypeStyle } from './scroll-snap-type';
import { WillChangeStyle } from './will-change';
import { TextUnderlineOffsetStyle } from './text-underline-offset';
import { InsetStyle } from './inset';

/**
* 創建監聽器已追蹤整個 document 的 class
Expand Down Expand Up @@ -188,6 +189,7 @@ StyleSheet.Styles.push(
TextTransformStyle,
TextIndentStyle,
VerticalAlignStyle,
InsetStyle,
LinesStyle,
MaxHeightStyle,
MaxWidthStyle,
Expand Down
5 changes: 5 additions & 0 deletions src/inset.ts
Original file line number Diff line number Diff line change
@@ -0,0 +1,5 @@
import { Style } from '@master/style';

export class InsetStyle extends Style {
static override key = 'inset';
}

0 comments on commit aaf1b75

Please sign in to comment.