Skip to content

Commit

Permalink
added CSS snippet for skypilot
Browse files Browse the repository at this point in the history
  • Loading branch information
actuallyakash committed Nov 14, 2023
1 parent 5dddf63 commit 17e6727
Showing 1 changed file with 18 additions and 0 deletions.
18 changes: 18 additions & 0 deletions skypilot/add-four-columns-course-catalog.css
Original file line number Diff line number Diff line change
@@ -0,0 +1,18 @@
/**
* Add 4 columns on course catalog page on Sky Pilot.
*
* Learn more at: https://lifterlms.com/docs/how-to-add-4-columns-on-course-catalog-page-on-sky-pilot/
*
* You can add this recipe to your site by creating a custom plugin
* or using the Code Snippets plugin available for free in the WordPress repository.
* Read this companion documentation for step-by-step directions on either method.
* https://lifterlms.com/docs/adding-custom-code/
*/
.llms-loop .llms-loop-list {
display: grid !important;
grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
}

.llms-loop-item {
width: 100% !important;
}

0 comments on commit 17e6727

Please sign in to comment.