fix: overlay styles
This commit is contained in:
parent
92f4e5a2f7
commit
1e5e9768fd
3 changed files with 6 additions and 6 deletions
|
@ -1,6 +1,6 @@
|
|||
{
|
||||
"name": "coryd.dev",
|
||||
"version": "11.3.3",
|
||||
"version": "11.3.4",
|
||||
"description": "The source for my personal site. Built using 11ty.",
|
||||
"type": "module",
|
||||
"scripts": {
|
||||
|
|
|
@ -1,10 +1,10 @@
|
|||
{% if data.size > 0 %}
|
||||
{% assign media = data | normalizeMedia %}
|
||||
<div class="media__grid {% if shape == 'square' %}square{% else %}vertical{% endif %}">
|
||||
<div class="media-grid {% if shape == 'square' %}square{% else %}vertical{% endif %}">
|
||||
{% for item in media limit: count %}
|
||||
{% assign alt = item.alt | strip | escape %}
|
||||
<a href="{{ item.url | stripUtm }}" title="{{ alt }}">
|
||||
<div class="item__wrapper{% if item.subtext %} shadow{% endif %}">
|
||||
<div class="item-wrapper{% if item.subtext %} shadow{% endif %}">
|
||||
<div class="meta-text">
|
||||
{% if item.title %}
|
||||
<div class="header">{{ item.title }}</div>
|
||||
|
|
|
@ -25,7 +25,7 @@
|
|||
justify-content: space-between;
|
||||
}
|
||||
|
||||
.media__grid {
|
||||
.media-grid {
|
||||
display: grid;
|
||||
gap: var(--sizing-sm);
|
||||
|
||||
|
@ -47,7 +47,7 @@
|
|||
}
|
||||
}
|
||||
|
||||
& .item__wrapper {
|
||||
& .item-wrapper {
|
||||
position: relative;
|
||||
|
||||
&.shadow picture::after {
|
||||
|
@ -58,7 +58,7 @@
|
|||
left: 1px;
|
||||
border-radius: calc(var(--sizing-xs) * .85);
|
||||
box-shadow: inset 0 -70px 50px -40px #000;
|
||||
width: 100%;
|
||||
width: calc(100% - 2px);
|
||||
height: calc(100% - 1px);
|
||||
}
|
||||
|
||||
|
|
Reference in a new issue