jscom_ice 1.0.0 → 1.0.1
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.
- checksums.yaml +4 -4
- data/_sass/component/_navbar.scss +11 -0
- data/_sass/component/_posts.scss +41 -0
- metadata +1 -1
checksums.yaml
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
---
|
|
2
2
|
SHA256:
|
|
3
|
-
metadata.gz:
|
|
4
|
-
data.tar.gz:
|
|
3
|
+
metadata.gz: 2d22b0ec82c7313d155016bf445a4fc15caacdd3fa6a8dc6033756c7c8cfe606
|
|
4
|
+
data.tar.gz: 33405791ae488fb9bf4e41d7c5a89327623d08125a505d2895501e6068842659
|
|
5
5
|
SHA512:
|
|
6
|
-
metadata.gz:
|
|
7
|
-
data.tar.gz:
|
|
6
|
+
metadata.gz: 1b04dec36f48c2f8c712da8457a234edb16de9cadfe01e2b5e8a8241d6e1c0fa299b458e94c6cfe2c70b1d26b1525c379bedc8b0407501b8d45a4ecec3ced122
|
|
7
|
+
data.tar.gz: 5d614331b9894d2507acb0a3cadee7e8a11f26cacfb4376dbbe53d04de1733b53c8cfa3f84b02381ca2b882de3e793c5496aa4234f3786be1940c966ce802975
|
|
@@ -96,6 +96,17 @@
|
|
|
96
96
|
}
|
|
97
97
|
}
|
|
98
98
|
|
|
99
|
+
// Fix for mobile menu transparency bug - ensure collapsed menu has solid background
|
|
100
|
+
@media (max-width: 991px) {
|
|
101
|
+
.navbar-collapse {
|
|
102
|
+
background-color: rgba(19, 20, 24, 0.95);
|
|
103
|
+
backdrop-filter: blur(12px) saturate(180%);
|
|
104
|
+
-webkit-backdrop-filter: blur(12px) saturate(180%);
|
|
105
|
+
margin: 0 -24px;
|
|
106
|
+
padding: 16px 24px;
|
|
107
|
+
border-radius: 0 0 8px 8px;
|
|
108
|
+
}
|
|
109
|
+
}
|
|
99
110
|
|
|
100
111
|
.menu {
|
|
101
112
|
a#mode {
|
data/_sass/component/_posts.scss
CHANGED
|
@@ -74,4 +74,45 @@
|
|
|
74
74
|
.col-md-8 {
|
|
75
75
|
flex: 5; // allows the title to grow and take up remaining space
|
|
76
76
|
padding-left: $spacing-md;
|
|
77
|
+
}
|
|
78
|
+
|
|
79
|
+
// Fix for mobile blog listing - stack date and title vertically with refined spacing
|
|
80
|
+
// Matches navbar breakpoint (navbar-expand-lg collapses below 992px)
|
|
81
|
+
@media (max-width: 991px) {
|
|
82
|
+
.posts-wrapper {
|
|
83
|
+
padding: $spacing-sm 0;
|
|
84
|
+
}
|
|
85
|
+
|
|
86
|
+
.post-item.row {
|
|
87
|
+
flex-direction: column;
|
|
88
|
+
align-items: flex-start;
|
|
89
|
+
padding: $spacing-sm $spacing-sm;
|
|
90
|
+
}
|
|
91
|
+
|
|
92
|
+
.col-md-2 {
|
|
93
|
+
flex: none;
|
|
94
|
+
width: 100%;
|
|
95
|
+
min-width: 0;
|
|
96
|
+
margin-bottom: 2px;
|
|
97
|
+
padding-left: 0;
|
|
98
|
+
}
|
|
99
|
+
|
|
100
|
+
.col-md-8 {
|
|
101
|
+
flex: none;
|
|
102
|
+
width: 100%;
|
|
103
|
+
padding-left: 0;
|
|
104
|
+
}
|
|
105
|
+
|
|
106
|
+
span.post-item-date {
|
|
107
|
+
font-size: 13px !important;
|
|
108
|
+
opacity: 0.6 !important;
|
|
109
|
+
font-weight: 400 !important;
|
|
110
|
+
letter-spacing: 0.3px;
|
|
111
|
+
}
|
|
112
|
+
|
|
113
|
+
.post-item-title a {
|
|
114
|
+
font-size: 20px !important;
|
|
115
|
+
line-height: 1.3;
|
|
116
|
+
font-weight: 500;
|
|
117
|
+
}
|
|
77
118
|
}
|