@@ -225,7 +225,7 @@ impl Window {
225225 }
226226
227227 fn page_title < Message : ' static > ( & self , page : Page ) -> Element < Message > {
228- row ! ( text( page. title( ) ) . size( 30 ) , horizontal_space( Length :: Fill ) , ) . into ( )
228+ row ! ( text( page. title( ) ) . size( 28 ) , horizontal_space( Length :: Fill ) , ) . into ( )
229229 }
230230
231231 fn is_condensed ( & self ) -> bool {
@@ -245,14 +245,14 @@ impl Window {
245245 column ! (
246246 iced:: widget:: Button :: new( row!(
247247 icon( "go-previous-symbolic" , 16 ) . style( theme:: Svg :: SymbolicLink ) ,
248- text( page. title( ) ) . size( 16 ) ,
248+ text( page. title( ) ) . size( 14 ) ,
249249 ) )
250250 . padding( 0 )
251251 . style( theme:: Button :: Link )
252252 // .id(BTN.clone())
253253 . on_press( Message :: from( page) ) ,
254254 row!(
255- text( sub_page. title( ) ) . size( 30 ) ,
255+ text( sub_page. title( ) ) . size( 28 ) ,
256256 horizontal_space( Length :: Fill ) ,
257257 ) ,
258258 )
@@ -276,8 +276,8 @@ impl Window {
276276 . style( theme:: Svg :: Symbolic )
277277 . into( ) ,
278278 column!(
279- text( sub_page. title( ) ) . size( 18 ) ,
280- text( sub_page. description( ) ) . size( 12 ) ,
279+ text( sub_page. title( ) ) . size( 14 ) ,
280+ text( sub_page. description( ) ) . size( 10 ) ,
281281 )
282282 . spacing( 2 )
283283 . into( ) ,
0 commit comments