mirror of
https://github.com/mue/mue.git
synced 2026-07-26 02:01:19 +02:00
fix: various bug fixes
This commit is contained in:
@@ -8,7 +8,10 @@ const Settings = React.lazy(() => import('./tabs/Settings'));
|
||||
const Addons = React.lazy(() => import('./tabs/Addons'));
|
||||
const Marketplace = React.lazy(() => import('./tabs/Marketplace'));
|
||||
|
||||
const renderLoader = () => <></>;
|
||||
const renderLoader = () => (<Tabs>
|
||||
<div label=''>{window.language.modals.main.loading}</div>
|
||||
<div label=''>{window.language.modals.main.loading}</div>
|
||||
</Tabs>);
|
||||
|
||||
export default function MainModal(props) {
|
||||
const language = window.language.modals.main.navbar;
|
||||
|
||||
@@ -244,7 +244,7 @@ li {
|
||||
display: inline-flex;
|
||||
|
||||
&:hover {
|
||||
color: rgb(105, 105, 105);
|
||||
color: rgb(165, 165, 165);
|
||||
}
|
||||
}
|
||||
|
||||
|
||||
@@ -109,7 +109,7 @@ input[type=color]::-moz-color-swatch {
|
||||
margin-left: 0;
|
||||
}
|
||||
|
||||
.MuiCheckbox-colorPrimary.Mui-checked, .MuiSwitch-colorPrimary.Mui-checked, .MuIconButton-colorPrimary.Mui-checked, .MuiSwitch-thumb, .MuiRadio-colorSecondary.Mui-checked {
|
||||
.MuiCheckbox-colorPrimary.Mui-checked, .MuiSwitch-colorPrimary.Mui-checked, .MuIconButton-colorPrimary.Mui-checked, .MuiSwitch-thumb, .MuiRadio-colorSecondary.Mui-checked, .PrivateSwitchBase-input-4 {
|
||||
color: var(--modal-text) !important;
|
||||
}
|
||||
|
||||
|
||||
@@ -26,7 +26,7 @@ export default class About extends React.PureComponent {
|
||||
try {
|
||||
contributors = await (await fetch(window.constants.GITHUB_URL + '/repos/mue/mue/contributors')).json();
|
||||
sponsors = (await (await fetch(window.constants.SPONSORS_URL + '/list')).json()).sponsors;
|
||||
photographers = await (await fetch(window.constants.API_URL + '/getPhotographers')).json();
|
||||
photographers = await (await fetch(window.constants.API_URL + '/images/photographers')).json();
|
||||
|
||||
versionData = await (await fetch(window.constants.GITHUB_URL + '/repos/mue/mue/releases')).json();
|
||||
} catch (e) {
|
||||
|
||||
Reference in New Issue
Block a user