Add preferred theme colors to footer (#155)

* Add preferred theme colors to footer

* remove inline-block

* Add Footer to LoginPage

* update README, add new screenshot, update Footer
This commit is contained in:
Borislav Pantaleev
2024-11-19 11:14:06 +02:00
committed by GitHub
parent 86d0fd04e6
commit befcd15298
7 changed files with 38 additions and 22 deletions

View File

@@ -26,6 +26,7 @@ import {
splitMxid,
} from "../synapse/synapse";
import storage from "../storage";
import Footer from "../components/Footer";
export type LoginMethod = "credentials" | "accessToken";
@@ -321,6 +322,7 @@ const LoginPage = () => {
</Card>
</LoginFormBox>
<Notification />
<Footer />
</Form>
);
};