Skip to content

Commit

Permalink
feat: Add box-shadow to images
Browse files Browse the repository at this point in the history
  • Loading branch information
nicklem committed Jan 25, 2024
1 parent 7d64468 commit 9637da5
Show file tree
Hide file tree
Showing 7 changed files with 13 additions and 7 deletions.
4 changes: 2 additions & 2 deletions material/assets/manifest.json
Original file line number Diff line number Diff line change
Expand Up @@ -5,8 +5,8 @@
"assets/javascripts/vendor.js.map": "assets/javascripts/vendor.57114a05.min.js.map",
"assets/javascripts/worker/search.js": "assets/javascripts/worker/search.5845d53c.min.js",
"assets/javascripts/worker/search.js.map": "assets/javascripts/worker/search.5845d53c.min.js.map",
"assets/stylesheets/main.css": "assets/stylesheets/main.4d9fb3f3.min.css",
"assets/stylesheets/main.css.map": "assets/stylesheets/main.4d9fb3f3.min.css.map",
"assets/stylesheets/main.css": "assets/stylesheets/main.5cc77c8e.min.css",
"assets/stylesheets/main.css.map": "assets/stylesheets/main.5cc77c8e.min.css.map",
"assets/stylesheets/palette.css": "assets/stylesheets/palette.936ed772.min.css",
"assets/stylesheets/palette.css.map": "assets/stylesheets/palette.936ed772.min.css.map"
}
3 changes: 0 additions & 3 deletions material/assets/stylesheets/main.4d9fb3f3.min.css

This file was deleted.

1 change: 0 additions & 1 deletion material/assets/stylesheets/main.4d9fb3f3.min.css.map

This file was deleted.

3 changes: 3 additions & 0 deletions material/assets/stylesheets/main.5cc77c8e.min.css

Large diffs are not rendered by default.

1 change: 1 addition & 0 deletions material/assets/stylesheets/main.5cc77c8e.min.css.map

Large diffs are not rendered by default.

2 changes: 1 addition & 1 deletion material/base.html
Original file line number Diff line number Diff line change
Expand Up @@ -49,7 +49,7 @@
{% endif %}
{% endblock %}
{% block styles %}
<link rel="stylesheet" href="{{ 'assets/stylesheets/main.4d9fb3f3.min.css' | url }}">
<link rel="stylesheet" href="{{ 'assets/stylesheets/main.5cc77c8e.min.css' | url }}">
{% if palette.primary or palette.accent %}
<link rel="stylesheet" href="{{ 'assets/stylesheets/palette.936ed772.min.css' | url }}">
{% endif %}
Expand Down
6 changes: 6 additions & 0 deletions src/assets/stylesheets/layout/_content.scss
Original file line number Diff line number Diff line change
Expand Up @@ -51,6 +51,12 @@
}
}

img {
box-shadow:
0 px2rem(4px) px2rem(10px) hsla(0, 0%, 0%, 0.05),
0 0 px2rem(1px) hsla(0, 0%, 0%, 0.1);
}

// Define spacing
&__inner {
// Limit the width of page content
Expand Down

0 comments on commit 9637da5

Please sign in to comment.