3
0
mirror of https://github.com/Qortal/q-support.git synced 2025-02-11 17:55:50 +00:00

Merge pull request #13 from QortalSeth/main

User Experience Improvements:
This commit is contained in:
Qortal Dev 2025-01-02 17:02:11 -07:00 committed by GitHub
commit ae605d1445
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194
4 changed files with 9 additions and 6 deletions

View File

@ -12,8 +12,8 @@ export const AddCoverImageButton = styled(Button)(({ theme }) => ({
letterSpacing: "0.2px", letterSpacing: "0.2px",
color: theme.palette.text.primary, color: theme.palette.text.primary,
width: "170px", width: "170px",
backgroundColor: "#44c4ff", backgroundColor: "#01A9E9",
"&:hover": { backgroundColor: "#01a9e9" }, "&:hover": { backgroundColor: "#005C96" },
gap: "5px", gap: "5px",
})); }));

View File

@ -3,6 +3,8 @@
src: url("./styles/fonts/Cambon-Light.ttf") format("truetype"); src: url("./styles/fonts/Cambon-Light.ttf") format("truetype");
} }
a:link { color: #8AB4F8}
@font-face { @font-face {
font-family: 'Merriweather Sans'; font-family: 'Merriweather Sans';
src: url("./styles/fonts/Merriweather Sans.ttf") format("truetype"); src: url("./styles/fonts/Merriweather Sans.ttf") format("truetype");

View File

@ -87,14 +87,14 @@ export const ChannelCard = styled(Grid)(({ theme }) => ({
export const ThemeButton = styled(Button)(({ theme }) => ({ export const ThemeButton = styled(Button)(({ theme }) => ({
color: theme.palette.text.primary, color: theme.palette.text.primary,
backgroundColor: "#01a9e9", backgroundColor: "#008FCD",
fontSize: "18px", fontSize: "18px",
"&:hover": { backgroundColor: "#008fcd" }, "&:hover": { backgroundColor: "#0075B1" },
})); }));
export const ThemeButtonBright = styled(Button)(({ theme }) => ({ export const ThemeButtonBright = styled(Button)(({ theme }) => ({
color: theme.palette.text.primary, color: theme.palette.text.primary,
backgroundColor: "#44c4ff", backgroundColor: "#01A9E9",
fontSize: fontSizeSmall, fontSize: fontSizeSmall,
"&:hover": { backgroundColor: "#01a9e9" }, "&:hover": { backgroundColor: "#005C96" },
})); }));

View File

@ -4,6 +4,7 @@ import react from "@vitejs/plugin-react";
// https://vitejs.dev/config/ // https://vitejs.dev/config/
export default defineConfig({ export default defineConfig({
plugins: [react()], plugins: [react()],
server: { port: 3000 },
base: "", base: "",
build: { build: {
target: "esnext", //browsers can handle the latest ES features target: "esnext", //browsers can handle the latest ES features