mirror of
https://github.com/easydiffusion/easydiffusion.git
synced 2025-05-21 16:50:50 +02:00
footer looking better
This commit is contained in:
parent
0591487cfd
commit
e81068f528
@ -28,19 +28,16 @@ export const MenuButton = style({
|
|||||||
marginBottom: vars.spacing.medium,
|
marginBottom: vars.spacing.medium,
|
||||||
});
|
});
|
||||||
|
|
||||||
|
|
||||||
globalStyle(`${MenuButton}> h4`, {
|
globalStyle(`${MenuButton}> h4`, {
|
||||||
color: "#e7ba71",
|
color: "#e7ba71",
|
||||||
});
|
});
|
||||||
|
|
||||||
|
|
||||||
export const ModifierListStyle = style({
|
export const ModifierListStyle = style({
|
||||||
// marginBottom: vars.spacing.small,
|
// marginBottom: vars.spacing.small,
|
||||||
paddingLeft: 0,
|
paddingLeft: 0,
|
||||||
listStyleType: "none",
|
listStyleType: "none",
|
||||||
display: "flex",
|
display: "flex",
|
||||||
flexWrap: "wrap",
|
flexWrap: "wrap",
|
||||||
|
|
||||||
});
|
});
|
||||||
|
|
||||||
globalStyle(`${ModifierListStyle} li`, {
|
globalStyle(`${ModifierListStyle} li`, {
|
||||||
|
@ -1,12 +0,0 @@
|
|||||||
.footer-display {
|
|
||||||
color: #ffffff;
|
|
||||||
display: flex;
|
|
||||||
flex-direction: column;
|
|
||||||
align-items: center;
|
|
||||||
justify-content: center;
|
|
||||||
}
|
|
||||||
|
|
||||||
#coffeeButton {
|
|
||||||
height: 23px;
|
|
||||||
transform: translateY(25%);
|
|
||||||
}
|
|
@ -0,0 +1,61 @@
|
|||||||
|
import { style, globalStyle } from "@vanilla-extract/css";
|
||||||
|
|
||||||
|
// @ts-ignore
|
||||||
|
import { vars } from "../../../styles/theme/index.css.ts";
|
||||||
|
|
||||||
|
|
||||||
|
export const FooterDisplayMain = style({
|
||||||
|
color: vars.colors.text.normal,
|
||||||
|
fontSize: vars.fonts.sizes.Caption,
|
||||||
|
|
||||||
|
display: "inline-block",
|
||||||
|
// marginTop: vars.spacing.medium,
|
||||||
|
// marginBottom: vars.spacing.medium,
|
||||||
|
// TODO move this to the theme
|
||||||
|
padding: vars.spacing.small,
|
||||||
|
boxShadow: "0 4px 8px 0 rgba(0, 0, 0, 0.15), 0 6px 20px 0 rgba(0, 0, 0, 0.15)",
|
||||||
|
});
|
||||||
|
|
||||||
|
export const CoffeeButton = style({
|
||||||
|
height: "23px",
|
||||||
|
transform: "translateY(25%)",
|
||||||
|
});
|
||||||
|
|
||||||
|
globalStyle(`${FooterDisplayMain} a`, {
|
||||||
|
color: vars.colors.link,
|
||||||
|
textDecoration: "none",
|
||||||
|
});
|
||||||
|
|
||||||
|
globalStyle(`${FooterDisplayMain} a:hover`, {
|
||||||
|
textDecoration: "underline",
|
||||||
|
});
|
||||||
|
|
||||||
|
globalStyle(`${FooterDisplayMain} a:visited`, {
|
||||||
|
color: vars.colors.link,
|
||||||
|
});
|
||||||
|
|
||||||
|
globalStyle(`${FooterDisplayMain} a:active`, {
|
||||||
|
color: vars.colors.link,
|
||||||
|
});
|
||||||
|
|
||||||
|
globalStyle(`${FooterDisplayMain} a:focus`, {
|
||||||
|
color: vars.colors.link,
|
||||||
|
});
|
||||||
|
|
||||||
|
globalStyle(`${FooterDisplayMain} p`, {
|
||||||
|
margin: vars.spacing.min,
|
||||||
|
});
|
||||||
|
|
||||||
|
|
||||||
|
// .footer-display {
|
||||||
|
// color: #ffffff;
|
||||||
|
// display: flex;
|
||||||
|
// flex-direction: column;
|
||||||
|
// align-items: center;
|
||||||
|
// justify-content: center;
|
||||||
|
// }
|
||||||
|
|
||||||
|
// #coffeeButton {
|
||||||
|
// height: 23px;
|
||||||
|
// transform: translateY(25%);
|
||||||
|
// }
|
@ -1,12 +1,16 @@
|
|||||||
import React from "react";
|
import React from "react";
|
||||||
|
|
||||||
import "./footerDisplay.css";
|
import {
|
||||||
|
FooterDisplayMain,
|
||||||
|
CoffeeButton
|
||||||
|
} from // @ts-ignore
|
||||||
|
"./footerDisplay.css.ts";
|
||||||
|
|
||||||
import { API_URL } from "../../../api";
|
import { API_URL } from "../../../api";
|
||||||
|
|
||||||
export default function FooterDisplay() {
|
export default function FooterDisplay() {
|
||||||
return (
|
return (
|
||||||
<div id="footer" className="panel-box">
|
<div className={FooterDisplayMain}>
|
||||||
<p>
|
<p>
|
||||||
If you found this project useful and want to help keep it alive, please{" "}
|
If you found this project useful and want to help keep it alive, please{" "}
|
||||||
<a
|
<a
|
||||||
@ -14,7 +18,7 @@ export default function FooterDisplay() {
|
|||||||
target="_blank"
|
target="_blank"
|
||||||
rel="noreferrer"
|
rel="noreferrer"
|
||||||
>
|
>
|
||||||
<img src={`${API_URL}/kofi.png`} id="coffeeButton" />
|
<img src={`${API_URL}/kofi.png`} className={CoffeeButton} />
|
||||||
</a>{" "}
|
</a>{" "}
|
||||||
to help cover the cost of development and maintenance! Thank you for
|
to help cover the cost of development and maintenance! Thank you for
|
||||||
your support!
|
your support!
|
||||||
|
@ -54,6 +54,8 @@ const colors = createThemeContract({
|
|||||||
|
|
||||||
const app = createGlobalTheme(":root", {
|
const app = createGlobalTheme(":root", {
|
||||||
spacing: {
|
spacing: {
|
||||||
|
none: "0",
|
||||||
|
min: '2px',
|
||||||
small: "5px",
|
small: "5px",
|
||||||
medium: "10px",
|
medium: "10px",
|
||||||
large: "25px",
|
large: "25px",
|
||||||
|
Loading…
Reference in New Issue
Block a user