Fixes responsive images (omg finally), removes app padding

This commit is contained in:
psychedelicious
2022-10-29 12:22:07 +11:00
parent 6fb6bc6d7f
commit 9291fde960
13 changed files with 52 additions and 47 deletions

View File

@@ -2,20 +2,18 @@
.App {
display: grid;
width: max-content;
width: 100vw;
height: 100vh;
background-color: var(--background-color);
}
.app-content {
display: grid;
row-gap: 1rem;
margin: 0.6rem;
padding: 1rem;
border-radius: 0.5rem;
background-color: var(--background-color);
row-gap: 0.5rem;
padding: $app-padding;
grid-auto-rows: max-content;
width: $app-width;
height: $app-height;
min-width: min-content;
}
.app-console {