mirror of
https://github.com/Radiquum/AniX.git
synced 2025-04-06 16:24:40 +00:00
refactor(Design/Content): redising of the main content view
This commit is contained in:
parent
d1544b4bf5
commit
10397b2b6a
2 changed files with 15 additions and 3 deletions
|
@ -79,8 +79,20 @@ export const App = (props) => {
|
||||||
/>
|
/>
|
||||||
)}
|
)}
|
||||||
</div>
|
</div>
|
||||||
<main className="responsive padding" style={{ overflow: "hidden" }}>
|
<main
|
||||||
{props.children}
|
className="max padding"
|
||||||
|
style={{
|
||||||
|
height: "calc(100vh - 2rem)",
|
||||||
|
width: "100%",
|
||||||
|
overflow: "hidden",
|
||||||
|
}}
|
||||||
|
>
|
||||||
|
<div
|
||||||
|
className="border round padding"
|
||||||
|
style={{ height: "calc(100vh - 2rem)", "overflow-y": "scroll" }}
|
||||||
|
>
|
||||||
|
{props.children}
|
||||||
|
</div>
|
||||||
</main>
|
</main>
|
||||||
</div>
|
</div>
|
||||||
</body>
|
</body>
|
||||||
|
|
|
@ -5,7 +5,7 @@ export const ReleaseCard = (props) => {
|
||||||
return (
|
return (
|
||||||
<Link
|
<Link
|
||||||
href={`/release/${props.id}`}
|
href={`/release/${props.id}`}
|
||||||
className={props.className ? props.className : "s3"}
|
className={props.className ? props.className : "s2"}
|
||||||
>
|
>
|
||||||
<article
|
<article
|
||||||
className="no-padding round fill"
|
className="no-padding round fill"
|
||||||
|
|
Loading…
Add table
Reference in a new issue