fixing the ui of the front page

This commit is contained in:
Chris Cochrun 2024-01-08 15:50:10 -06:00
parent f9bcae157f
commit 661c272543
2 changed files with 18 additions and 4 deletions

View file

@ -2044,6 +2044,10 @@ select {
height: 1000px;
}
.h-4 {
height: 1rem;
}
.max-h-\[5rem\] {
max-height: 5rem;
}
@ -5429,6 +5433,14 @@ pre {
width: auto;
}
.md\:basis-3\/4 {
flex-basis: 75%;
}
.md\:basis-1\/4 {
flex-basis: 25%;
}
.md\:grid-cols-2 {
grid-template-columns: repeat(2, minmax(0, 1fr));
}