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