Skip to content

Commit 17e6727

Browse files
committed
added CSS snippet for skypilot
1 parent 5dddf63 commit 17e6727

File tree

1 file changed

+18
-0
lines changed

1 file changed

+18
-0
lines changed
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,18 @@
1+
/**
2+
* Add 4 columns on course catalog page on Sky Pilot.
3+
*
4+
* Learn more at: https://lifterlms.com/docs/how-to-add-4-columns-on-course-catalog-page-on-sky-pilot/
5+
*
6+
* You can add this recipe to your site by creating a custom plugin
7+
* or using the Code Snippets plugin available for free in the WordPress repository.
8+
* Read this companion documentation for step-by-step directions on either method.
9+
* https://lifterlms.com/docs/adding-custom-code/
10+
*/
11+
.llms-loop .llms-loop-list {
12+
display: grid !important;
13+
grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
14+
}
15+
16+
.llms-loop-item {
17+
width: 100% !important;
18+
}

0 commit comments

Comments
 (0)