diff options
author | Arnav Bhatt <arnav@ghativega.in> | 2023-01-26 19:43:30 +0530 |
---|---|---|
committer | Arnav Bhatt <arnav@ghativega.in> | 2023-01-26 19:43:30 +0530 |
commit | be4307d4b6275ac1a5a331c6eae0c14a4cc09ec1 (patch) | |
tree | 64881e16e79914721f339e55afa3fb864b7880fa /data/style.css | |
parent | af8761231c3de3e0d16463e7771246d7b747e456 (diff) |
fixing image being oversized
Diffstat (limited to 'data/style.css')
-rwxr-xr-x | data/style.css | 6 |
1 files changed, 6 insertions, 0 deletions
diff --git a/data/style.css b/data/style.css index 6e3ad39..12e3a49 100755 --- a/data/style.css +++ b/data/style.css @@ -10,6 +10,12 @@ a { display: inline; } +img { + max-width: 100%; + max-height: 100%; + display: block; /* remove extra space below image */ +} + body { color: #ffffff; background: #111; |