Skip to content

Commit d7bfe80

Browse files
committed
Added homescreen screenshot
1 parent 333edbe commit d7bfe80

3 files changed

Lines changed: 11 additions & 1 deletion

File tree

2.09 MB
Loading

index.html

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -131,6 +131,9 @@ <h3>Ready to Play</h3>
131131
<section id="screenshots" class="screenshots">
132132
<h2 class="section-title animate-on-scroll">See It In Action</h2>
133133
<div class="screenshots-grid">
134+
<div class="screenshot-wrapper animate-on-scroll">
135+
<img src="assets/screenshots/HOME-DASHBOARD.png" alt="Home Dashboard View" class="screenshot-img">
136+
</div>
134137
<div class="screenshot-wrapper animate-on-scroll">
135138
<img src="assets/screenshots/OPL-PS1-Library-Screenshot.png" alt="PS1 Library View" class="screenshot-img">
136139
</div>

styles.css

Lines changed: 8 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -276,11 +276,12 @@ header {
276276
@media (min-width: 900px) {
277277
.screenshots-grid {
278278
flex-direction: row;
279+
flex-wrap: wrap;
279280
}
280281
}
281282

282283
.screenshot-wrapper {
283-
flex: 1;
284+
flex: 1 1 400px;
284285
border-radius: 12px;
285286
overflow: hidden;
286287
box-shadow: var(--glass-shadow);
@@ -290,6 +291,12 @@ header {
290291
cursor: pointer;
291292
}
292293

294+
@media (min-width: 900px) {
295+
.screenshot-wrapper:first-child {
296+
flex: 1 1 100%;
297+
}
298+
}
299+
293300
.screenshot-wrapper:hover {
294301
transform: translateY(-8px) scale(1.02);
295302
border-color: rgba(0, 240, 255, 0.4);

0 commit comments

Comments
 (0)