fix(ui): fixes for mobile UI, settings and sessions pages (#451)

Co-authored-by: trashtemp <96388163+trashtemp@users.noreply.github.com>
This commit is contained in:
Paul Makles
2021-12-20 20:48:37 +00:00
committed by GitHub
parent e7459790c5
commit 6e4c4f3ae2
15 changed files with 251 additions and 72 deletions

View File

@@ -1,4 +1,5 @@
import { ListCheck, ListUl } from "@styled-icons/boxicons-regular";
import { ListUl } from "@styled-icons/boxicons-regular";
import { InfoCircle } from "@styled-icons/boxicons-solid";
import { Route, Switch, useHistory, useParams } from "react-router-dom";
import { Text } from "preact-i18n";
@@ -55,14 +56,14 @@ export default function ChannelSettings() {
/>
),
id: "overview",
icon: <ListUl size={20} />,
icon: <InfoCircle size={20} />,
title: (
<Text id="app.settings.channel_pages.overview.title" />
),
},
{
id: "permissions",
icon: <ListCheck size={20} />,
icon: <ListUl size={20} />,
title: (
<Text id="app.settings.channel_pages.permissions.title" />
),