File tree 1 file changed +2
-4
lines changed
client/packages/lowcoder/src/comps/comps/navComp
1 file changed +2
-4
lines changed Original file line number Diff line number Diff line change @@ -74,7 +74,7 @@ const Item = styled.div<{
74
74
text-transform:${ ( props ) => ( props . $textTransform ? props . $textTransform : '' ) } ;
75
75
text-decoration:${ ( props ) => ( props . $textDecoration ? props . $textDecoration : '' ) } ;
76
76
margin:${ ( props ) => props . $margin ? props . $margin : '0px' } ;
77
-
77
+
78
78
&:hover {
79
79
color: ${ ( props ) => props . $activeColor } ;
80
80
cursor: pointer;
@@ -242,8 +242,7 @@ const NavCompBase = new UICompBuilder(childrenMap, (props) => {
242
242
</ Section >
243
243
) }
244
244
245
- { ( useContext ( EditorContext ) . editorModeStatus === "layout" ||
246
- useContext ( EditorContext ) . editorModeStatus === "both" ) && (
245
+ { ( useContext ( EditorContext ) . editorModeStatus === "layout" || useContext ( EditorContext ) . editorModeStatus === "both" ) && (
247
246
< Section name = { sectionNames . layout } >
248
247
{ children . horizontalAlignment . propertyView ( {
249
248
label : trans ( "navigation.horizontalAlignment" ) ,
@@ -252,7 +251,6 @@ const NavCompBase = new UICompBuilder(childrenMap, (props) => {
252
251
{ hiddenPropertyView ( children ) }
253
252
</ Section >
254
253
) }
255
-
256
254
257
255
{ ( useContext ( EditorContext ) . editorModeStatus === "logic" || useContext ( EditorContext ) . editorModeStatus === "both" ) && (
258
256
< Section name = { sectionNames . advanced } >
You can’t perform that action at this time.
0 commit comments