Skip to content
Open
Show file tree
Hide file tree
Changes from 12 commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion packages/apps/src/Apps.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -46,7 +46,7 @@ const NOT_FOUND: Route = {
text: 'Unknown'
};

function Apps ({ className = '' }: Props): React.ReactElement<Props> {
function Apps({ className = '' }: Props): React.ReactElement<Props> {
const location = useLocation();
const { t } = useTranslation();
const theme = useContext<ThemeDef>(ThemeContext);
Expand Down
2 changes: 1 addition & 1 deletion packages/apps/src/Footer/Footer.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -114,7 +114,7 @@ export default memo(styled(Footer)`
color: var(--link-color);
}

@media (max-width: 1023px) {
@media (max-width: 1279px) {
border-top: 1px solid var(--enum-input-border-disabled-color);
}

Expand Down
4 changes: 2 additions & 2 deletions packages/apps/src/Root.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -25,7 +25,7 @@ interface Props {
store?: KeyringStore;
}

function createTheme ({ uiTheme }: { uiTheme: string }): ThemeDef {
function createTheme({ uiTheme }: { uiTheme: string }): ThemeDef {
const validTheme = Themes.find((themeElem) => {
return (themeElem.domain && window.location.href.includes(themeElem.domain)) || (themeElem.ip && window.location.href.includes(themeElem.ip));
});
Expand All @@ -36,7 +36,7 @@ function createTheme ({ uiTheme }: { uiTheme: string }): ThemeDef {
return validTheme || uniqueTheme;
}

function Root ({ store }: Props): React.ReactElement<Props> {
function Root({ store }: Props): React.ReactElement<Props> {
const [theme, setTheme] = useState(() => createTheme(settings));

useEffect((): void => {
Expand Down
Loading