We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent e213907 commit 1341743Copy full SHA for 1341743
apps/web/app/globals.css
@@ -51,6 +51,16 @@ html {
51
color: #000000;
52
background-color: #f2f2f2;
53
}
54
+.dashboard-grid {
55
+ display: grid;
56
+ grid-template-columns: auto 1fr 1fr;
57
+ grid-template-areas:
58
+ "sidebar main main"
59
+ "sidebar main main";
60
+ height: 100dvh;
61
+ width: 100vw;
62
+ min-height: 100dvh;
63
+}
64
65
.dashboard-grid {
66
display: grid;
@@ -304,6 +314,7 @@ a.bg-primary:hover {
304
314
@media all and (max-width: 1024px) {
305
315
306
316
grid-template-columns: 1fr;
317
+ grid-template-rows: 1fr;
307
318
grid-template-areas:
308
319
"main"
309
320
"main";
0 commit comments