diff options
author | Alan Pearce | 2024-05-04 19:52:39 +0200 |
---|---|---|
committer | Alan Pearce | 2024-05-04 19:52:39 +0200 |
commit | 3c54a3f63ad9b9ccaf5ca064ec3fd730164aad4a (patch) | |
tree | e61c881a74d55fca0d618a828d2b55004b4556bf /frontend | |
parent | 87ec9ecf21781c5289257750fd41c6b9991f1f6e (diff) | |
download | searchix-3c54a3f63ad9b9ccaf5ca064ec3fd730164aad4a.tar.lz searchix-3c54a3f63ad9b9ccaf5ca064ec3fd730164aad4a.tar.zst searchix-3c54a3f63ad9b9ccaf5ca064ec3fd730164aad4a.zip |
fix(css): first grid row too tall
Diffstat (limited to 'frontend')
-rw-r--r-- | frontend/static/style.css | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/frontend/static/style.css b/frontend/static/style.css index e72df60..95198fb 100644 --- a/frontend/static/style.css +++ b/frontend/static/style.css @@ -16,6 +16,6 @@ dd { dl { display: grid; - grid-template-rows: 100%; + grid-template-rows: 1fr; grid-template-columns: max-content 1fr; } |