More styling tweaks

This commit is contained in:
Ingvar Stepanyan
2022-01-17 21:58:16 +00:00
parent e544071f85
commit 91b85b5f1e
2 changed files with 24 additions and 18 deletions

View File

@@ -199,18 +199,22 @@ class App extends Component {
h(
'form',
{ class: 'pure-form pure-form-aligned' },
this.connection.supportedOps.triggerCapture
? h(CaptureButton, { getFile: this.captureImage })
: undefined,
' ',
h(
'a',
{
class: 'pure-button',
href: 'https://github.com/GoogleChromeLabs/web-gphoto2',
target: '_blank'
},
'⭐ Star on Github'
'fieldset',
null,
this.connection.supportedOps.triggerCapture
? h(CaptureButton, { getFile: this.captureImage })
: undefined,
' ',
h(
'a',
{
class: 'pure-button',
href: 'https://github.com/GoogleChromeLabs/web-gphoto2',
target: '_blank'
},
'⭐ Star on Github'
)
),
h(Widget, { config: state.config, setValue: this.setValue })
)