From 578751436ed3f1e72e600840f392edb2031d26d3 Mon Sep 17 00:00:00 2001 From: Omar Ashraf Date: Mon, 12 Apr 2021 14:42:28 +0300 Subject: [PATCH] Added Media Query for .key CSS Selector Added Media Query for .key CSS Selector ( Margin top and bottom ), So that it won't be sticking to each other in smaller screens. --- event-keycodes/style.css | 6 ++++++ 1 file changed, 6 insertions(+) diff --git a/event-keycodes/style.css b/event-keycodes/style.css index 954ceb8..e597872 100644 --- a/event-keycodes/style.css +++ b/event-keycodes/style.css @@ -40,3 +40,9 @@ body { color: #555; font-size: 14px; } + +@media(max-width:768px){ + .key{ + margin: 10px 0px; + } +}