Commit 236914c 1 parent 535594f commit 236914c Copy full SHA for 236914c
File tree 2 files changed +4
-4
lines changed
2 files changed +4
-4
lines changed Original file line number Diff line number Diff line change @@ -97,7 +97,7 @@ pub fn SiteHeader() -> impl IntoView {
97
97
font-size: 20px;
98
98
}
99
99
.demo-header__menu-mobile {
100
- display: none;
100
+ display: none !important ;
101
101
}
102
102
.demo-header__menu-popover-mobile {
103
103
padding: 0;
@@ -112,10 +112,10 @@ pub fn SiteHeader() -> impl IntoView {
112
112
}
113
113
@media screen and (max-width: 1200px) {
114
114
.demo-header__right-btn {
115
- display: none;
115
+ display: none !important ;
116
116
}
117
117
.demo-header__menu-mobile {
118
- display: block;
118
+ display: block !important ;
119
119
}
120
120
}
121
121
"
Original file line number Diff line number Diff line change @@ -34,7 +34,7 @@ pub fn Icon(
34
34
let icon_fill = RwSignal :: new ( None ) ;
35
35
let icon_data = RwSignal :: new ( None ) ;
36
36
37
- create_render_effect ( move |_| {
37
+ create_isomorphic_effect ( move |_| {
38
38
let icon = icon. get ( ) ;
39
39
40
40
let style = match ( style. clone ( ) , icon. style ) {
You can’t perform that action at this time.
0 commit comments