From 20086b657bf6237a015954a6b72ab0598b52e46b Mon Sep 17 00:00:00 2001 From: Badiuzzaman Date: Tue, 2 May 2023 22:10:33 +0600 Subject: [PATCH] cursor and border added to button `cursor: pointer` property added to global button. `close-button` class now has two new property to achieve design goal. --- flex/05-flex-modal/solution/solution.css | 3 +++ flex/05-flex-modal/style.css | 3 +++ 2 files changed, 6 insertions(+) diff --git a/flex/05-flex-modal/solution/solution.css b/flex/05-flex-modal/solution/solution.css index d60d5ef..cc353e9 100644 --- a/flex/05-flex-modal/solution/solution.css +++ b/flex/05-flex-modal/solution/solution.css @@ -46,9 +46,12 @@ body { display: flex; align-items: center; justify-content: center; + border: 1px solid #eee; + padding: 0; } button { + cursor: pointer; padding: 8px 16px; border-radius: 8px; } diff --git a/flex/05-flex-modal/style.css b/flex/05-flex-modal/style.css index 58fda8b..780b355 100644 --- a/flex/05-flex-modal/style.css +++ b/flex/05-flex-modal/style.css @@ -46,9 +46,12 @@ body { display: flex; align-items: center; justify-content: center; + border: 1px solid #eee; + padding: 0; } button { + cursor: pointer; padding: 8px 16px; border-radius: 8px; }