File tree Expand file tree Collapse file tree 1 file changed +7
-1
lines changed
client/packages/lowcoder/src/comps/controls Expand file tree Collapse file tree 1 file changed +7
-1
lines changed Original file line number Diff line number Diff line change @@ -852,7 +852,6 @@ export const TransferStyle = [
852
852
853
853
export const CardStyle = [
854
854
getStaticBackground ( "#ffffff" ) ,
855
- BORDER ,
856
855
{
857
856
name : "IconColor" ,
858
857
label : trans ( "card.IconColor" ) ,
@@ -866,6 +865,12 @@ export const CardStyle = [
866
865
transformer : toSelf ,
867
866
} ,
868
867
CONTAINER_BODY_PADDING ,
868
+ ...STYLING_FIELDS_CONTAINER_SEQUENCE
869
+ ] as const ;
870
+
871
+ export const CardHeaderStyle = [
872
+ getStaticBackground ( SURFACE_COLOR ) ,
873
+ ...STYLING_FIELDS_SEQUENCE ,
869
874
] as const ;
870
875
871
876
export const timerStyle = [
@@ -1583,6 +1588,7 @@ export type AvatarGroupStyleType = StyleConfigType<typeof avatarGroupStyle>;
1583
1588
export type FloatButtonStyleType = StyleConfigType < typeof FloatButtonStyle > ;
1584
1589
export type TransferStyleType = StyleConfigType < typeof TransferStyle > ;
1585
1590
export type CardStyleType = StyleConfigType < typeof CardStyle > ;
1591
+ export type CardHeaderStyleType = StyleConfigType < typeof CardHeaderStyle > ;
1586
1592
export type timerStyleType = StyleConfigType < typeof timerStyle > ;
1587
1593
export type StartButtonStyleType = StyleConfigType < typeof startButtonStyle > ;
1588
1594
You can’t perform that action at this time.
0 commit comments