diff --git a/index.html b/index.html
index 53b88187..0d51bc57 100644
--- a/index.html
+++ b/index.html
@@ -304,6 +304,15 @@
margin-top: 0;
}
}
+
+ .grid.search__empty:after {
+ content: 'No matching icons found.';
+ font-size: 1.25em;
+ line-height: 1.5em;
+ text-align: center;
+ width: 100%;
+ }
+
@supports (display: grid) {
.grid {
display: grid;
@@ -313,6 +322,16 @@
grid-row-gap: 0.375rem;
grid-auto-flow: dense;
}
+ .grid.search__empty:after {
+ grid-column: 1/span 2;
+ grid-row-end: span 2;
+ }
+
+ @media (min-width: 30.75rem) {
+ .grid.search__empty:after {
+ grid-column: 1/-3;
+ }
+ }
}
.grid-item {
@@ -479,7 +498,8 @@