[Pharo] Personal fitness tracker web app.
Improved footer appearance.
src/MyFitnessTracker/MFTDefaultFooter.class.st
@@ -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
]