Skip to content

Commit 0f15c0f

Browse files
mb-westoverclaude
andcommitted
Fix CSS compilation by converting SCSS comments to CSS comments
- Change // comments to /* */ comments for GitHub Pages compatibility - SCSS // comments may not compile properly on GitHub Pages Jekyll processor - All team image styling should now compile and apply correctly 🤖 Generated with Claude Code (https://claude.ai/code) Co-Authored-By: Claude <[email protected]>
1 parent 5803958 commit 0f15c0f

File tree

1 file changed

+17
-17
lines changed

1 file changed

+17
-17
lines changed

css/main.scss

Lines changed: 17 additions & 17 deletions
Original file line numberDiff line numberDiff line change
@@ -120,59 +120,59 @@ body {
120120
box-shadow: inset 200px 0 0 0 #FF0000;
121121
}
122122

123-
// Team member image styling for consistent display
124-
// Uses #gridid selector which is the actual ID on the team page
123+
/* Team member image styling for consistent display */
124+
/* Uses #gridid selector which is the actual ID on the team page */
125125

126-
// Container for team member entries
126+
/* Container for team member entries */
127127
.team-member {
128128
margin-bottom: 30px;
129-
min-height: 200px; // Ensure consistent height for layout
129+
min-height: 200px; /* Ensure consistent height for layout */
130130
}
131131

132-
// Team member images - target all img tags within gridid
132+
/* Team member images - target all img tags within gridid */
133133
#gridid img {
134-
// Fixed dimensions for consistent display
134+
/* Fixed dimensions for consistent display */
135135
width: 150px !important;
136136
height: 150px !important;
137-
object-fit: cover; // Maintains aspect ratio, crops if needed
138-
object-position: center top; // Focus on face area
137+
object-fit: cover; /* Maintains aspect ratio, crops if needed */
138+
object-position: center top; /* Focus on face area */
139139

140-
// Performance optimizations
140+
/* Performance optimizations */
141141
image-rendering: -webkit-optimize-contrast;
142142
image-rendering: crisp-edges;
143143

144-
// Smooth loading
144+
/* Smooth loading */
145145
background-color: #f5f5f5;
146146
transition: opacity 0.3s ease-in-out;
147147

148-
// Border for consistency
148+
/* Border for consistency */
149149
border: 1px solid #ddd;
150150
border-radius: 4px;
151151

152-
// Float and spacing
152+
/* Float and spacing */
153153
float: left;
154154
margin-right: 20px;
155155
margin-bottom: 10px;
156156
}
157157

158-
// Override default img styling from main.scss
158+
/* Override default img styling from main.scss */
159159
#gridid .col-sm-6 img {
160160
margin: 0 20px 10px 0 !important;
161161
border-radius: 4px !important;
162162
box-shadow: none !important;
163163
}
164164

165-
// Lazy loading state
165+
/* Lazy loading state */
166166
#gridid img[loading="lazy"] {
167167
opacity: 0.8;
168168
}
169169

170-
// Loaded state
170+
/* Loaded state */
171171
#gridid img.loaded {
172172
opacity: 1;
173173
}
174174

175-
// Responsive adjustments
175+
/* Responsive adjustments */
176176
@media (max-width: 768px) {
177177
#gridid img {
178178
width: 120px !important;
@@ -193,7 +193,7 @@ body {
193193
}
194194
}
195195

196-
// Clearfix for floating images
196+
/* Clearfix for floating images */
197197
.team-member::after {
198198
content: "";
199199
display: table;

0 commit comments

Comments
 (0)