Created
April 2, 2024 13:13
-
-
Save kimcoleman/ebf91935e5fdab5121a87f26c9d6f345 to your computer and use it in GitHub Desktop.
Sample CSS that gets you started with a two-column Student Dashboard layout
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
.llms-student-dashboard { align-items: flex-start; display: grid; grid-column-gap: 2em; grid-template-columns: 1fr 4fr; } | |
.llms-sd-header { display: flex; flex-direction: column-reverse; } | |
.llms-sd-title { display: none; } | |
.llms-sd-nav .llms-sd-items { display: flex; flex-direction: column; } | |
.llms-student-dashboard .llms-sd-item .llms-sep { display: none; } |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment