changed up the styling a bit

This commit is contained in:
HerpieDerpie@example.com
2024-01-11 11:56:18 +01:00
parent 3ab2429970
commit 3443ed8d3c
8 changed files with 97 additions and 377 deletions

View File

@@ -63,4 +63,51 @@
#editProjectName,
#exportProject {
color: black !important;
}
@media only screen and (max-width: 768px) {
#main {
margin: 0;
width: 100%;
height: 100vh;
overflow-y: visible;
}
#title {
font-size: 8vw;
}
#container {
text-align: center;
border-radius: 0;
box-shadow: none;
overflow-y: scroll !important;
}
#grid {
width: 65%;
height: fit-content;
display: grid;
grid-template-columns: 100%;
grid-auto-rows: 200px;
gap:10px !important;
}
.grid-btn {
width: 100% !important;
height: 100% !important;
}
}
@media only screen and (max-width: 768px) and (min-width: 500px) {
#grid {
width: 50%;
height: fit-content;
display: grid;
grid-template-columns: 100%;
grid-auto-rows: 200px;
gap:10px !important;
}
}