Fix project entry width bug
This commit is contained in:
parent
1b19d8e6eb
commit
b5a5a9b921
|
|
@ -13,7 +13,8 @@
|
||||||
<li
|
<li
|
||||||
:key="index"
|
:key="index"
|
||||||
class="project__objective"
|
class="project__objective"
|
||||||
v-for="(objective, index) in objectives">{{ objective }}</li>
|
v-for="(objective, index) in objectives">{{ objective }}
|
||||||
|
</li>
|
||||||
</ul>
|
</ul>
|
||||||
|
|
||||||
<div class="project__meta">
|
<div class="project__meta">
|
||||||
|
|
@ -188,7 +189,7 @@
|
||||||
display: grid;
|
display: grid;
|
||||||
width: auto;
|
width: auto;
|
||||||
}
|
}
|
||||||
grid-template-columns: minmax(max-content, 840px);
|
grid-template-columns: minmax(min-content, 840px);
|
||||||
grid-row-gap: 30px;
|
grid-row-gap: 30px;
|
||||||
justify-content: center;
|
justify-content: center;
|
||||||
padding: $large-spacing $medium-spacing;
|
padding: $large-spacing $medium-spacing;
|
||||||
|
|
|
||||||
Loading…
Reference in New Issue