@@ -22,9 +22,13 @@ mainWidget st =
22
22
]
23
23
$ [ header_ mempty $ Menu. menu st
24
24
]
25
- <> [ main_ [class_ " main-widget-middle" ] $ screenWidget st
25
+ <> [ main_
26
+ [class_ " main-widget-middle" ]
27
+ $ screenWidget st
26
28
]
27
- <> [ footer_ mempty tosWidget
29
+ <> [ footer_
30
+ [style_ [(" text-align" , " center" )]]
31
+ [tosWidget]
28
32
]
29
33
<> ( if st ^. # modelLoading
30
34
then
@@ -210,19 +214,21 @@ foldFieldPair :: Rational -> FieldPair DynamicField f -> Rational
210
214
foldFieldPair acc =
211
215
foldField acc . fieldPairValue
212
216
213
- tosWidget :: [ View Action ]
217
+ tosWidget :: View Action
214
218
tosWidget =
215
- [ Miso. text " \169 2024 " ,
216
- BrowserLink. browserLink
217
- BrowserLink. Args
218
- { BrowserLink. argsLink = functoraLink,
219
- BrowserLink. argsLabel = " Functora" ,
220
- BrowserLink. argsAction = PushUpdate . Instant
221
- },
222
- Miso. text " . All rights reserved. " ,
223
- Miso. text " By continuing to use this software, you agree to the " ,
224
- a_ [href_ " license.html" ] [Miso. text " Terms of Service" ],
225
- Miso. text " and " ,
226
- a_ [href_ " privacy.html" ] [Miso. text " Privacy Policy" ],
227
- Miso. text $ " . Version " <> vsn <> " ."
228
- ]
219
+ small_
220
+ mempty
221
+ [ Miso. text " \169 2024 " ,
222
+ BrowserLink. browserLink
223
+ BrowserLink. Args
224
+ { BrowserLink. argsLink = functoraLink,
225
+ BrowserLink. argsLabel = " Functora" ,
226
+ BrowserLink. argsAction = PushUpdate . Instant
227
+ },
228
+ Miso. text " . All rights reserved. " ,
229
+ Miso. text " By continuing to use this software, you agree to the " ,
230
+ a_ [href_ " license.html" ] [Miso. text " Terms of Service" ],
231
+ Miso. text " and " ,
232
+ a_ [href_ " privacy.html" ] [Miso. text " Privacy Policy" ],
233
+ Miso. text $ " . Version " <> vsn <> " ."
234
+ ]
0 commit comments