Commit de732766 authored by timel's avatar timel

feat: styles small

parent 52602516
Pipeline #22892 failed with stages
in 11 minutes and 33 seconds
...@@ -25,7 +25,7 @@ const theme: ThemeConfig = { ...@@ -25,7 +25,7 @@ const theme: ThemeConfig = {
export const Component: React.FC = () => { export const Component: React.FC = () => {
return ( return (
<ConfigProvider theme={theme}> <ConfigProvider theme={theme}>
<Background style={{ backgroundImage: "initial" }} /> <Background />
<div className={styles.layout} style={{ width: "100%" }}> <div className={styles.layout} style={{ width: "100%" }}>
<div className={styles.sider}> <div className={styles.sider}>
<div className={styles["deck-select-container"]}> <div className={styles["deck-select-container"]}>
......
...@@ -7,11 +7,21 @@ ...@@ -7,11 +7,21 @@
overflow: hidden; overflow: hidden;
width: 100%; width: 100%;
background-color: #010514; background-color: #010514;
background-image: url("/neos-assets/background-grid.webp");
z-index: -1; z-index: -1;
display: flex; display: flex;
justify-content: center; justify-content: center;
// align-items: center; // align-items: center;
&::before {
content: "";
position: absolute;
left: 0;
top: 0;
height: 100%;
max-height: 100%;
width: 100%;
background-image: url("/neos-assets/noise-light.png");
opacity: 0.3;
}
} }
.inner { .inner {
...@@ -19,5 +29,7 @@ ...@@ -19,5 +29,7 @@
width: 60vw; width: 60vw;
height: 100vh; height: 100vh;
background: radial-gradient(#00814f, #1c0161); background: radial-gradient(#00814f, #1c0161);
background-size: contain;
background-repeat: repeat;
filter: blur(502px); filter: blur(502px);
} }
...@@ -8,7 +8,7 @@ ...@@ -8,7 +8,7 @@
height: 650px; height: 650px;
width: 650px; width: 650px;
margin: auto; margin: auto;
margin-top: 50px; // FIXME margin-top: 50px;
position: relative; position: relative;
.neos-pic { .neos-pic {
max-width: 100%; max-width: 100%;
...@@ -19,7 +19,7 @@ ...@@ -19,7 +19,7 @@
filter: drop-shadow(0 0 2rem #ffffffbc); filter: drop-shadow(0 0 2rem #ffffffbc);
position: absolute; position: absolute;
top: 50%; top: 50%;
width: 100%; width: 90%;
height: fit-content; height: fit-content;
left: 52%; left: 52%;
transform: translateX(-50%); transform: translateX(-50%);
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment