Progress
This commit is contained in:
parent
401a99a127
commit
8d452f0f6b
@ -27,7 +27,7 @@ const debouncedSave = debounce((dispatch, getState) => {
|
||||
api().put('/api/web/settings', { data })
|
||||
.then(() => dispatch({ type: SETTING_SAVE }))
|
||||
.catch(() => { /* */ })
|
||||
}, 5000, { trailing: true })
|
||||
}, 500, { trailing: true })
|
||||
|
||||
export function saveSettings() {
|
||||
return (dispatch, getState) => debouncedSave(dispatch, getState)
|
||||
|
@ -495,7 +495,7 @@ class UI extends PureComponent {
|
||||
// } : {}
|
||||
|
||||
return (
|
||||
<div ref={this.setRef}>
|
||||
<div ref={this.setRef} className={_s.gabsocial}>
|
||||
<LoadingBar className={[_s.height1PX, _s.z3, _s.bgBrandLight].join(' ')} />
|
||||
|
||||
<SwitchingArea location={location} onLayoutChange={this.handleLayoutChange}>
|
||||
|
@ -106,13 +106,6 @@
|
||||
--navigation_search: var(--solid_color_block) !important;
|
||||
}
|
||||
|
||||
html {
|
||||
padding-top: env(safe-area-inset-top, 0);
|
||||
padding-right: env(safe-area-inset-right, 0);
|
||||
padding-left: env(safe-area-inset-left, 0);
|
||||
padding-bottom: env(safe-area-inset-bottom, 0);
|
||||
}
|
||||
|
||||
html,
|
||||
body {
|
||||
min-height: 100%;
|
||||
@ -980,6 +973,10 @@ body {
|
||||
background-color: var(--navigation_search);
|
||||
}
|
||||
|
||||
.gabsocial {
|
||||
composes: saveAreaInsetPB saveAreaInsetPT saveAreaInsetPL saveAreaInsetPR;
|
||||
}
|
||||
|
||||
/**
|
||||
* Rich Text Editor
|
||||
*/
|
||||
|
Loading…
x
Reference in New Issue
Block a user