Improved footer appearance.

Commit
3eb55cccc144e7474ee55e1999eaa8c902ba0fcf
Author
Marius Peter <marius.peter@tutanota.com>
Author date
Committer
Marius Peter <marius.peter@tutanota.com>
Committer date
src/MyFitnessTracker/MFTDefaultFooter.class.st
index 077c4362..6bc2d9a0 100644..100644
@@ -10,20 +10,10 @@
10 10 MFTDefaultFooter >> renderContentOn: html [
11 11
12 12 self renderFooterOn: html with: [
13 Removed: html text:
14 Removed: 'Copyright 2023–' , Date today year asString , ' Marius PETER'.
15 Removed: html space.
16 Removed: html badge beSecondary with: (MFTUtils version
17 Removed: ifNil: [ 'DEVELOP' ]
18 Removed: ifNotNil: [ 'v' , MFTUtils version ]) ]
19 Removed: ]
20 Removed:
21 Removed: { #category : 'rendering' }
22 Removed: MFTDefaultFooter >> renderFooterOn: html [
23 Removed:
24 Removed: html card
25 Removed: marginTop: 3;
26 Removed: paddingTopAndBottom: 2;
27 Removed: class: 'align-items-center bg-light';
28 Removed: with: 'Copyright 2023–' , Date today year asString , ' Marius PETER'
13 Added: html paragraph: [
14 Added: html text:
15 Added: 'Copyright 2023–' , Date today year asString , ' Marius PETER '.
16 Added: html badge beSecondary with: (MFTUtils version
17 Added: ifNil: [ 'DEVELOP' ]
18 Added: ifNotNil: [ 'v' , MFTUtils version ]) ] ]
29 19 ]