Get rid of center-parent

This commit is contained in:
Ingvar Stepanyan
2024-12-06 01:05:30 +00:00
parent b4cd4a1adf
commit ca9e5b11e7
2 changed files with 2 additions and 10 deletions

View File

@@ -130,9 +130,6 @@ class App extends Component {
switch (state.type) {
case 'CameraPicker':
return h(
'div',
{ class: 'center-parent' },
h(
'div',
{
class: 'center'
@@ -158,15 +155,10 @@ class App extends Component {
'repo'
),
'!'
)
)
);
case 'Status':
return h(
'div',
{ class: 'center-parent' },
h('div', { class: 'center' }, state.message)
);
return h('div', { class: 'center' }, state.message);
case 'Config':
return h(
'div',