liftie 4.3.1 → 4.3.3

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "liftie",
3
- "version": "4.3.1",
3
+ "version": "4.3.3",
4
4
  "description": "Clean, simple, easy to read, fast ski resort lift status",
5
5
  "type": "module",
6
6
  "keywords": [
@@ -879,6 +879,10 @@ header {
879
879
  justify-items: center;
880
880
  align-items: start;
881
881
 
882
+ &.resorts {
883
+ display: grid-lanes;
884
+ }
885
+
882
886
  &:has(> .tags),
883
887
  &:has(> .about) {
884
888
  grid-template-columns: 1fr;
@@ -879,6 +879,10 @@ header {
879
879
  justify-items: center;
880
880
  align-items: start;
881
881
 
882
+ &.resorts {
883
+ display: grid-lanes;
884
+ }
885
+
882
886
  &:has(> .tags),
883
887
  &:has(> .about) {
884
888
  grid-template-columns: 1fr;
package/views/index.jade CHANGED
@@ -7,7 +7,7 @@ include resort
7
7
  block content
8
8
  +about('hidden')
9
9
 
10
- .content
10
+ .content.resorts
11
11
  for resort in resorts
12
12
  +resort(resort)
13
13