File tree Expand file tree Collapse file tree 2 files changed +9
-2
lines changed
Expand file tree Collapse file tree 2 files changed +9
-2
lines changed Original file line number Diff line number Diff line change @@ -4,4 +4,7 @@ import { defineConfig } from 'astro/config';
44// https://astro.build/config
55export default defineConfig ( {
66 site : 'https://ubcigem.com' ,
7+ server : {
8+ allowedHosts : true
9+ }
710} )
Original file line number Diff line number Diff line change @@ -147,7 +147,9 @@ import { Content as AboutCompetitionContent } from '../content/about-the-competi
147147
148148 > img {
149149 grid-column: 1;
150- height: 100%;
150+ display: flex;
151+ align-self: stretch;
152+ /* height: 100%; */
151153 width: 100%;
152154 object-fit: cover;
153155 }
@@ -205,7 +207,8 @@ import { Content as AboutCompetitionContent } from '../content/about-the-competi
205207
206208 > img {
207209 grid-column: span 3;
208- height: 100%;
210+ display: flex;
211+ align-self: stretch;
209212 width: 100%;
210213 object-fit: cover;
211214 }
@@ -281,6 +284,7 @@ import { Content as AboutCompetitionContent } from '../content/about-the-competi
281284
282285 .about-competition-box > div:last-child {
283286 grid-template-columns: 1fr;
287+ grid-template-rows: repeat(4, auto);
284288 column-gap: 0;
285289 }
286290 }
You can’t perform that action at this time.
0 commit comments